summaryrefslogtreecommitdiff
path: root/Lib/trace.py
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-35133: Fix mistakes when concatenate string literals on different l...Serhiy Storchaka2018-11-051-1/+1
* Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-0/+0
* Fix test failures when Python is compiled without thread support.Nadeem Vawda2011-08-291-9/+1
* Use floor division operator instead of deprecated division operator.Raymond Hettinger2011-04-111-1/+1
* Merged revisions 86229 via svnmerge fromAlexander Belopolsky2010-11-061-5/+18
* Merged revisions 84994 via svnmerge fromAlexander Belopolsky2010-09-241-8/+2
* Issue #9315: Fix for the trace module to record correct class nameAlexander Belopolsky2010-09-131-8/+4
* Merged revisions 83525 via svnmerge fromGeorg Brandl2010-08-021-2/+2
* Merged revisions 83393,83396,83398,83405,83408 via svnmerge fromGeorg Brandl2010-08-011-2/+13
* replace has_key with 'in' operatorBenjamin Peterson2009-10-091-1/+1
* Add a timing flag to Trace so you can see where slowness occursNeal Norwitz2008-02-261-4/+21
* Fix #1693149. Now you can pass several modules separated byFacundo Batista2008-01-191-3/+5
* back in these go - thanks to Titus Brown for the fixSkip Montanaro2007-11-241-0/+2
* revert change that breaks test_doctest (which I forgot to run - sorry)Skip Montanaro2007-11-241-2/+0
* Make trace and doctest play nice together (issue 1429818). Will backport.Skip Montanaro2007-11-231-0/+2
* fix trace.py --ignore-dirSkip Montanaro2007-02-111-1/+1
* Patch #1536071: trace.py should now find the full module name of aGeorg Brandl2006-08-141-1/+3
* Make use of new str.startswith/endswith semantics.Georg Brandl2006-06-091-1/+1
* Whitespace normalization.Tim Peters2006-04-241-1/+1
* correct exampleSkip Montanaro2006-04-231-9/+11
* fix typos, mostly in commentsFred Drake2005-10-281-1/+1
* SF #1062190. Removed an assertion that rendered trace.py unnecessarilyRaymond Hettinger2004-11-081-1/+0
* Open file in universal newline mode when passing to compile(). SolutionSkip Montanaro2004-04-161-1/+1
* Refactor common code out of globaltrace_trackcallers() andSkip Montanaro2004-04-101-28/+56
* Added --trackcalls command line arg to display crude caller/calleeSkip Montanaro2004-04-071-18/+88
* Fix two small bugs: (1) on Windows, pathname munging didn't workGuido van Rossum2004-02-191-2/+4
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-1/+1
* SF patch #834015: Remove imports of unused modulesRaymond Hettinger2003-11-021-1/+0
* Open results files, which contain binary pickles, in binary mode.Jeremy Hylton2003-10-141-4/+2
* Ouch. Remove debug code containing obscenities. :-)Guido van Rossum2003-10-101-3/+0
* The fullmodname() function chopped off the first character if theGuido van Rossum2003-10-101-1/+8
* Make the prefix 7 spaces long, so the lines are properly aligned.Walter Dörwald2003-07-151-1/+1
* Patch from Zooko to remove an experimental feature.Jeremy Hylton2003-07-071-9/+4
* fix typoFred Drake2003-06-271-1/+1
* add mention of -l, --listfuncs to usage() small part of 542562Skip Montanaro2003-06-271-0/+3
* Enable tracing of multi-threaded applications.Jeremy Hylton2003-06-261-1/+6
* Whitespace normalization.Tim Peters2003-04-241-2/+2
* Only produce a dotted module name when writing output to a separateJeremy Hylton2003-04-221-2/+3
* Add helper function to get module name taking packages into account.Jeremy Hylton2003-04-211-1/+22
* Holistic refactoring.Jeremy Hylton2003-04-211-225/+159
* Get rid of many apply() calls.Guido van Rossum2003-02-271-1/+1
* Whitespace normalization.Tim Peters2003-02-191-14/+14
* Copy the trace module here from Tools/scripts.Jeremy Hylton2003-02-181-0/+729