1. 8f8ec92 Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 10 years ago
  2. b992a0e Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 10 years ago
  3. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  4. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  5. 10f8932 #17143: merge with 3.3. by Ezio Melotti · 11 years ago
  6. 23e043f #17143: fix a missing import in the trace module. Initial patch by Berker Peksag. by Ezio Melotti · 11 years ago
  7. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 12 years ago
  8. 61ea12c trace: remove unused imports. by Florent Xicluna · 12 years ago
  9. 949d8c9 Close #14690: Use monotonic clock instead of system clock in the sched, by Victor Stinner · 12 years ago
  10. 7ded1f0 Implemented PEP 405 (Python virtual environments). by Vinay Sajip · 12 years ago
  11. 9fe92d1 Make the trace module ignore modules whose names start with "<" and by Brett Cannon · 12 years ago
  12. e7d36fe Prevent deprecation warning by Éric Araujo · 13 years ago
  13. 44454af Issue #10371: Deprecated undocumented functions in the trace module. by Alexander Belopolsky · 14 years ago
  14. 58c0752 Issue #10335: Add tokenize.open(), detect the file encoding using by Victor Stinner · 14 years ago
  15. 6672ea9 Streamlined code in trace.Ignore and added unit tests. by Alexander Belopolsky · 14 years ago
  16. 64bc3b2 Issue #10329: The trace module writes reports using the input Python script by Victor Stinner · 14 years ago
  17. 25b5741 Issue #10330: trace module can now be used with python built without threads. by Alexander Belopolsky · 14 years ago
  18. b2fda23 close files correctly by Benjamin Peterson · 14 years ago
  19. eebccfb Reverted inadvertent change that slipped into r85695 by Alexander Belopolsky · 14 years ago
  20. 4a98e3b Issue #10117: Tools/scripts/reindent.py now accepts source files that by Alexander Belopolsky · 14 years ago
  21. 0ae3361 Issue 9941: Minor code cleanup before implementing the context manager feature: by Alexander Belopolsky · 14 years ago
  22. ff09ce2 Issue #9936: Fixed executable lines' search in the trace module. by Alexander Belopolsky · 14 years ago
  23. 4d77017 Issue #9315: Fix for the trace module to record correct class name by Alexander Belopolsky · 14 years ago
  24. dc50c69 Fix softspace relic. by Georg Brandl · 14 years ago
  25. 24085d7 Get rid of spurious "threading" entries in trace output. by Georg Brandl · 14 years ago
  26. 120d633 #4943: do not try to include drive letters (and colons) when looking for a probably module name. by Georg Brandl · 14 years ago
  27. 8f9f466 #1690103: fix initial namespace for code run with trace.main(). by Georg Brandl · 14 years ago
  28. 3f8ecab Issue #9323: Fixed a bug in trace.py that resulted in loosing the name by Alexander Belopolsky · 14 years ago
  29. 533a167 Issue #9282: Fixed --listfuncs option of trace.py. Thanks Eli by Alexander Belopolsky · 14 years ago
  30. 90f5ba5 convert shebang lines: python -> python3 by Benjamin Peterson · 14 years ago
  31. e1f9beb #6666: fix bug in trace.py that applied the list of ignored dirs only to 1st file by Andrew M. Kuchling · 14 years ago
  32. 33c2881 #5656: detect correct encoding of files when reporting coverage in trace.py, and ignore files in the temporary directory when reporting. by Georg Brandl · 15 years ago
  33. e61426e The trace module was trying to turn ints into ints since co_lnotab was changed by Brett Cannon · 15 years ago
  34. 8efc62c Bug #2606: Avoid calling .sort() on a dict_keys object. by Martin v. Löwis · 16 years ago
  35. 380f7f2 Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61081-61095 via svnmerge from by Christian Heimes · 16 years ago
  36. fceab5a Merged revisions 60080-60089,60091-60093 via svnmerge from by Georg Brandl · 16 years ago
  37. 0d3fb8a Merged revisions 59107-59186 via svnmerge from by Guido van Rossum · 17 years ago
  38. 0168802 Kill execfile(), use exec() instead by Neal Norwitz · 17 years ago
  39. 99603b0 Getting rid of cPickle. Mmm, feels good! by Guido van Rossum · 17 years ago
  40. 221085d Change all the function attributes from func_* -> __*__. This gets rid by Neal Norwitz · 17 years ago
  41. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  42. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 17 years ago
  43. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  44. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 17 years ago
  45. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  46. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  47. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  48. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  49. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  50. db390c1 fix typos, mostly in comments by Fred Drake · 19 years ago
  51. 481b09b3 SF #1062190. Removed an assertion that rendered trace.py unnecessarily by Raymond Hettinger · 20 years ago
  52. c00fc84 Open file in universal newline mode when passing to compile(). Solution by Skip Montanaro · 20 years ago
  53. 5bfd984 Refactor common code out of globaltrace_trackcallers() and by Skip Montanaro · 20 years ago
  54. cafc811 Added --trackcalls command line arg to display crude caller/callee by Skip Montanaro · 20 years ago
  55. bbca8da Fix two small bugs: (1) on Windows, pathname munging didn't work by Guido van Rossum · 20 years ago
  56. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  57. cc523fc SF patch #834015: Remove imports of unused modules by Raymond Hettinger · 21 years ago
  58. d0e2705 Open results files, which contain binary pickles, in binary mode. by Jeremy Hylton · 21 years ago
  59. 80bd5ca Ouch. Remove debug code containing obscenities. :-) by Guido van Rossum · 21 years ago
  60. b427c00 The fullmodname() function chopped off the first character if the by Guido van Rossum · 21 years ago
  61. c171172 Make the prefix 7 spaces long, so the lines are properly aligned. by Walter Dörwald · 21 years ago
  62. d7ce86d Patch from Zooko to remove an experimental feature. by Jeremy Hylton · 21 years ago
  63. 01c623b fix typo by Fred Drake · 21 years ago
  64. a7b8ac6 add mention of -l, --listfuncs to usage() small part of 542562 by Skip Montanaro · 21 years ago
  65. 546e34b Enable tracing of multi-threaded applications. by Jeremy Hylton · 21 years ago
  66. 0eadaac Whitespace normalization. by Tim Peters · 21 years ago
  67. c8c8b94 Only produce a dotted module name when writing output to a separate directory. by Jeremy Hylton · 21 years ago
  68. dfbfe73 Add helper function to get module name taking packages into account. by Jeremy Hylton · 21 years ago
  69. 38732e1 Holistic refactoring. by Jeremy Hylton · 21 years ago
  70. 68468eb Get rid of many apply() calls. by Guido van Rossum · 21 years ago
  71. f2715e0 Whitespace normalization. by Tim Peters · 21 years ago
  72. 4edaa0d Copy the trace module here from Tools/scripts. by Jeremy Hylton · 21 years ago