| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #9323: Fixed a bug in trace.py that resulted in loosing the name | Alexander Belopolsky | 2010-07-21 | 1 | -6/+3 |
|
|
* | Issue #9282: Fixed --listfuncs option of trace.py. Thanks Eli | Alexander Belopolsky | 2010-07-20 | 1 | -1/+2 |
|
|
* | convert shebang lines: python -> python3 | Benjamin Peterson | 2010-03-11 | 1 | -1/+1 |
|
|
* | #6666: fix bug in trace.py that applied the list of ignored dirs only to 1st ... | Andrew M. Kuchling | 2010-02-22 | 1 | -1/+1 |
|
|
* | #5656: detect correct encoding of files when reporting coverage in trace.py, ... | Georg Brandl | 2009-04-01 | 1 | -9/+17 |
|
|
* | The trace module was trying to turn ints into ints since co_lnotab was changed | Brett Cannon | 2009-01-30 | 1 | -1/+1 |
|
|
* | Bug #2606: Avoid calling .sort() on a dict_keys object. | Martin v. Löwis | 2008-04-10 | 1 | -9/+3 |
|
|
* | Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,... | Christian Heimes | 2008-02-28 | 1 | -4/+21 |
|
|
* | Merged revisions 60080-60089,60091-60093 via svnmerge from | Georg Brandl | 2008-01-19 | 1 | -3/+5 |
|
|
* | Merged revisions 59107-59186 via svnmerge from | Guido van Rossum | 2007-11-26 | 1 | -0/+2 |
|
|
* | Kill execfile(), use exec() instead | Neal Norwitz | 2007-08-12 | 1 | -1/+6 |
|
|
* | Getting rid of cPickle. Mmm, feels good! | Guido van Rossum | 2007-07-20 | 1 | -5/+1 |
|
|
* | Change all the function attributes from func_* -> __*__. This gets rid | Neal Norwitz | 2007-02-25 | 1 | -1/+1 |
|
|
* | Merged revisions 53623-53858 via svnmerge from | Thomas Wouters | 2007-02-23 | 1 | -1/+1 |
|
|
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 | 1 | -1/+1 |
|
|
* | Fix most trivially-findable print statements. | Guido van Rossum | 2007-02-09 | 1 | -25/+25 |
|
|
* | SF patch 1631942 by Collin Winter: | Guido van Rossum | 2007-01-10 | 1 | -6/+6 |
|
|
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 1 | -2/+2 |
|
|
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 1 | -1/+3 |
|
|
* | Get rid of dict.has_key(). Boy this has a lot of repercussions! | Guido van Rossum | 2006-08-18 | 1 | -1/+1 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -1/+1 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -9/+11 |
|
|
* | fix typos, mostly in comments | Fred Drake | 2005-10-28 | 1 | -1/+1 |
|
|
* | SF #1062190. Removed an assertion that rendered trace.py unnecessarily | Raymond Hettinger | 2004-11-08 | 1 | -1/+0 |
|
|
* | Open file in universal newline mode when passing to compile(). Solution | Skip Montanaro | 2004-04-16 | 1 | -1/+1 |
|
|
* | Refactor common code out of globaltrace_trackcallers() and | Skip Montanaro | 2004-04-10 | 1 | -28/+56 |
|
|
* | Added --trackcalls command line arg to display crude caller/callee | Skip Montanaro | 2004-04-07 | 1 | -18/+88 |
|
|
* | Fix two small bugs: (1) on Windows, pathname munging didn't work | Guido van Rossum | 2004-02-19 | 1 | -2/+4 |
|
|
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -1/+1 |
|
|
* | SF patch #834015: Remove imports of unused modules | Raymond Hettinger | 2003-11-02 | 1 | -1/+0 |
|
|
* | Open results files, which contain binary pickles, in binary mode. | Jeremy Hylton | 2003-10-14 | 1 | -4/+2 |
|
|
* | Ouch. Remove debug code containing obscenities. :-) | Guido van Rossum | 2003-10-10 | 1 | -3/+0 |
|
|
* | The fullmodname() function chopped off the first character if the | Guido van Rossum | 2003-10-10 | 1 | -1/+8 |
|
|
* | Make the prefix 7 spaces long, so the lines are properly aligned. | Walter Dörwald | 2003-07-15 | 1 | -1/+1 |
|
|
* | Patch from Zooko to remove an experimental feature. | Jeremy Hylton | 2003-07-07 | 1 | -9/+4 |
|
|
* | fix typo | Fred Drake | 2003-06-27 | 1 | -1/+1 |
|
|
* | add mention of -l, --listfuncs to usage() small part of 542562 | Skip Montanaro | 2003-06-27 | 1 | -0/+3 |
|
|
* | Enable tracing of multi-threaded applications. | Jeremy Hylton | 2003-06-26 | 1 | -1/+6 |
|
|
* | Whitespace normalization. | Tim Peters | 2003-04-24 | 1 | -2/+2 |
|
|
* | Only produce a dotted module name when writing output to a separate | Jeremy Hylton | 2003-04-22 | 1 | -2/+3 |
|
|
* | Add helper function to get module name taking packages into account. | Jeremy Hylton | 2003-04-21 | 1 | -1/+22 |
|
|
* | Holistic refactoring. | Jeremy Hylton | 2003-04-21 | 1 | -225/+159 |
|
|
* | Get rid of many apply() calls. | Guido van Rossum | 2003-02-27 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2003-02-19 | 1 | -14/+14 |
|
|
* | Copy the trace module here from Tools/scripts. | Jeremy Hylton | 2003-02-18 | 1 | -0/+729 |
|
|