1. 54d1a3b - New Extension: CodeContext. Provides block structuring hints for code by Kurt B. Kaiser · 20 years ago
  2. 9f62ecc SF #926075: Fixed the bug that returns a wrong pattern object for by Hye-Shik Chang · 20 years ago
  3. 0f5bf1e SF #926075: Fixed the bug that returns a wrong pattern object for by Hye-Shik Chang · 20 years ago
  4. c46cb2a * Restore the pure python version of heapq.py. by Raymond Hettinger · 20 years ago
  5. 61e40bd Special case normalization of empty strings. Fixes #924361. Backported to 2.3. by Martin v. Löwis · 20 years ago
  6. c00fc84 Open file in universal newline mode when passing to compile(). Solution by Skip Montanaro · 20 years ago
  7. 7892b1c * Add unittests for iterators that report their length by Raymond Hettinger · 20 years ago
  8. daedf21 Fixes for AF_UNIX support on OS/2: by Andrew MacIntyre · 20 years ago
  9. cf6f1b6 M EditorWindow.py M IOBinding.py M NEWS.txt M configDialog.py by Kurt B. Kaiser · 20 years ago
  10. 249369c atof: correct parameter name by Skip Montanaro · 20 years ago
  11. 5bfd984 Refactor common code out of globaltrace_trackcallers() and by Skip Montanaro · 20 years ago
  12. cafc811 Added --trackcalls command line arg to display crude caller/callee by Skip Montanaro · 20 years ago
  13. 22ab06e Fix comment typo by Andrew M. Kuchling · 20 years ago
  14. d9b38d2 Remove specific Python version from #! by Andrew M. Kuchling · 20 years ago
  15. 69e18c9 OS/2 has support for spawnvp() and spawnvpe() in the C libraries supplied by Andrew MacIntyre · 20 years ago
  16. 4e10ed3 If a file is opened with an explicit buffer size >= 1, repeated by Andrew MacIntyre · 20 years ago
  17. 456d325 Fix support for the "prog" keyword to the OptionParser constructor, as well by Fred Drake · 20 years ago
  18. b67c943 [Bugfix candidate] Escape traceback type and value. There are probably additional cases where cgitb.py doesn't escape as paranoidly as it should (e.g. attribute names) by Andrew M. Kuchling · 20 years ago
  19. 59db96f When /tmp has certain sticky bits set, newly created subdirectories by Guido van Rossum · 20 years ago
  20. 116d83c SF bug 924242: socket._fileobject._getclosed() returns wrong value by Tim Peters · 20 years ago
  21. d732c95 Revert 1.51 booleans so that sre will still run on old pythons. by Raymond Hettinger · 20 years ago
  22. 968c56a Simple Optimizations: by Raymond Hettinger · 20 years ago
  23. 29e3837 Remove unnecessary test. (Thanks Skip) by Raymond Hettinger · 20 years ago
  24. 1c5701d Fix test failure for test_tcl on OS/X and Windows if a by David Ascher · 20 years ago
  25. 01ab279 Marshal clean-up (SF patch #873224) by Armin Rigo · 20 years ago
  26. 01c9f8c Simple optimizations: by Raymond Hettinger · 20 years ago
  27. 4b49823 make sure the default manifest generation includes files identified as by Fred Drake · 20 years ago
  28. 91e83e2 Added more Windows version names (thanks to Thomas Heller). by Marc-André Lemburg · 20 years ago
  29. 9001cde Fix last patch to be backwards-compatible with Python 1.5.2 . by Brett Cannon · 20 years ago
  30. 21beb4c Fixed a caching bug in platform.platform() where the argument of 'terse' was by Brett Cannon · 20 years ago
  31. 1c0f1f9 Defer compilation of regular expressions until first use. by Martin v. Löwis · 20 years ago
  32. bc503d1 Use True/False instead of 0/1 for character classes. by Martin v. Löwis · 20 years ago
  33. 91a968a Ensure super() lookup of descriptor from classmethod works (SF #743627) by Phillip J. Eby · 20 years ago
  34. f167dc3 fix name in setacl method doc string by Piers Lauder · 20 years ago
  35. c69ebe8 Enable the profiling of C functions (builtins and extensions) by Nicholas Bastin · 20 years ago
  36. a1dde13 Add test case for unicode(somestring, "idna"). by Martin v. Löwis · 20 years ago
  37. aaeffaf Replace sequential split/join calls on strings with a single replace call. by Brett Cannon · 20 years ago
  38. 708b4da Convert input to a string object. Fixes #909230. Backported 2.3. by Martin v. Löwis · 20 years ago
  39. 69200fa Replace code in urllib for basejoin (undocumented) with urlparse.urljoin . by Brett Cannon · 20 years ago
  40. 48713e8 Add runctx to __all__. by Guido van Rossum · 20 years ago
  41. 824b1b2 Added command line options for profile.py - one for stats output file by Nicholas Bastin · 20 years ago
  42. 05f842b Basic dependency checking. setup() has two new optional arguments by Anthony Baxter · 20 years ago
  43. a3837a0 Patch #911176: Move test function into __main__ by Martin v. Löwis · 20 years ago
  44. 1eb4bfc Added global runctx function to profile to fix SF Bug #716587 by Nicholas Bastin · 20 years ago
  45. 7069338 The fix in ceval.c 2.386 allows iteration-by-iteration line tracing even in by Armin Rigo · 20 years ago
  46. ee6c9b8 Fix (really) for tight loop line events by Nicholas Bastin · 20 years ago
  47. fa7bec7 Test for tight loop line event fix, SF bug #765624 by Nicholas Bastin · 20 years ago
  48. aea9459 Test for lack of implicit return line event by Nicholas Bastin · 20 years ago
  49. 39a0f04 New parser. Next up, making the current parser use this parser by Anthony Baxter · 20 years ago
  50. 3f60629 SF bug 847019 datetime.datetime initialization needs more strict checking by Tim Peters · 20 years ago
  51. 8d9b60f Change parse_qsl() to accept control-name's with no equal sign (e.g., "name") by Brett Cannon · 20 years ago
  52. 6680341 Normalized files in test_unicode_file to eliminate failure on OSX by Nicholas Bastin · 20 years ago
  53. 67867ea [Part of patch #909005] Added map parameter for file_dispatcher and dispatcher_with_send by Andrew M. Kuchling · 20 years ago
  54. 174bdbc [Part of patch #909005] Repeating exception changed from 'raise socket.error, why' to just raise. Make use of connect_ex() raise socket.error with 2-tuple instead of just error code by Andrew M. Kuchling · 20 years ago
  55. 419af88 [Part of patch #909005] Remove Mac code for writable by Andrew M. Kuchling · 20 years ago
  56. 0ebbbe3 [Part of patch #909005] Set initial poll flags by Andrew M. Kuchling · 20 years ago
  57. 68522b1 [Part of patch #909005] Use True/False by Andrew M. Kuchling · 20 years ago
  58. 56d7913 [Patch #900071] Be case-insensitive when removing 'usage:' string by Andrew M. Kuchling · 20 years ago
  59. 9303777 [Part of patch #909005] Handle POLLPRI flag, and various errors cases. Fixes bug #887279 by Andrew M. Kuchling · 20 years ago
  60. 6602520 SF bug 917108: warnings.py does not define _test(). by Tim Peters · 20 years ago
  61. 433fa69 Patch #853488: Add hlist entry_configure and entry_cget methods. by Martin v. Löwis · 20 years ago
  62. 4848557 Remove unused instance attributes. by Neil Schemenauer · 20 years ago
  63. 46cf4fc Back out last patch that removed an entry from sys.path if it was not an by Brett Cannon · 20 years ago
  64. c82208e Deal with case of when locale time values has characters that can be mistaken by Brett Cannon · 20 years ago
  65. 4f65331 Limit the nesting depth of a tuple passed as the second argument to by Brett Cannon · 20 years ago
  66. 70ec0b4 Fix for SF 777848. by Guido van Rossum · 20 years ago
  67. 27f4961 SF patch 508730 CGIHTTPServer execfile should save cwd by Tim Peters · 20 years ago
  68. cc45466 Remove non-existent paths. by Brett Cannon · 20 years ago
  69. 497331f Fix how line endings were handled when iterating over a .pth file by stripping by Brett Cannon · 20 years ago
  70. 1e13054 test_email: comment out two fail-test cases that no longer fail with the new by Thomas Wouters · 20 years ago
  71. 934d31b Speed HMAC.copy() by installing a secret backdoor argument to by Tim Peters · 20 years ago
  72. 0813d76 Merge in Anthony's new parser code, from the anthony-parser-branch: by Thomas Wouters · 20 years ago
  73. 6fd0b0d commit the portion of PyXML patch #919008 that is relevant to the by Fred Drake · 20 years ago
  74. 5c5316f Add a new unicode codec: ptcp154 (Kazakh) by Hye-Shik Chang · 20 years ago
  75. 1281f76 * supply a more useful error message when append() is called on the by Gregory P. Smith · 20 years ago
  76. bce64ec bugfix for people executing test_all to run the test suite. (call the by Gregory P. Smith · 20 years ago
  77. 6e4620b 1. Make builtin foreground Royal Purple instead of Barney Purple. by Kurt B. Kaiser · 20 years ago
  78. cd1e8a9 Port test_binascii.py to PyUnit and enhance tests. by Walter Dörwald · 20 years ago
  79. 0bc3d98 1. Bug in Patch 805830 fixed by Nigel Rowe by Kurt B. Kaiser · 20 years ago
  80. deb4da5 Add missing docstrings. by Raymond Hettinger · 20 years ago
  81. 49f9bd1 SF feature request #686323: Minor array module enhancements by Raymond Hettinger · 20 years ago
  82. 118e127 Two issues spotted by Ronald OUssoren: by Jack Jansen · 20 years ago
  83. c32cec1 Don't use "dict" as a variable, it shadows the builtin. Spotted by Bob Ippolito. by Jack Jansen · 20 years ago
  84. 0576d0a Force option should be applied to a single package, not recursively by Jack Jansen · 20 years ago
  85. 2d95f1a SF patch #911431: robot.txt must be robots.txt (Contributed by George Yoshida.) by Raymond Hettinger · 20 years ago
  86. 3aa82c0 SF bug #910986: copy.copy fails for array.array by Raymond Hettinger · 20 years ago
  87. 989ddc0 - Added a downloader using urllib2 in stead of curl, based on code by Jack Jansen · 20 years ago
  88. 6cbba50 Make test_coercion.py less sensitive to platform fp quirks. Closes by Neil Schemenauer · 20 years ago
  89. ef9bf40 Tidied up the implementations of reversed (including the custom ones by Raymond Hettinger · 20 years ago
  90. d2c3626 Eliminate the double reverse option. It's only use case by Raymond Hettinger · 20 years ago
  91. 4b6b7f1 Remove calls to currentThread() in _Condition methods that were side-effect. by Brett Cannon · 20 years ago
  92. 6ec0996 SF patch #907403: Improvements to cStringIO.writelines() by Raymond Hettinger · 20 years ago
  93. 73360a3 Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe by Kurt B. Kaiser · 20 years ago
  94. 4102478 Removed spurious import statement by Vinay Sajip · 20 years ago
  95. f0e3569 Refactor the copy dispatcher code in copy.py. Simplifies and shortens by Raymond Hettinger · 20 years ago
  96. 8172ac3 Deal with possible case of having time.tzname[1] containing UTC or GMT. by Brett Cannon · 20 years ago
  97. dd80f76 SF patch #910929: Optimize list comprehensions by Raymond Hettinger · 20 years ago
  98. 31017ae SF #904720: dict.update should take a 2-tuple sequence like dict.__init_ by Raymond Hettinger · 20 years ago
  99. 47db165 Fixed invalid syntax. by Sjoerd Mullender · 20 years ago
  100. d1080a3 Have strftime() check its time tuple argument to make sure the tuple's values by Brett Cannon · 20 years ago