1. d732c95 Revert 1.51 booleans so that sre will still run on old pythons. by Raymond Hettinger · 20 years ago
  2. 968c56a Simple Optimizations: by Raymond Hettinger · 20 years ago
  3. 29e3837 Remove unnecessary test. (Thanks Skip) by Raymond Hettinger · 20 years ago
  4. 1c5701d Fix test failure for test_tcl on OS/X and Windows if a by David Ascher · 20 years ago
  5. 01ab279 Marshal clean-up (SF patch #873224) by Armin Rigo · 20 years ago
  6. 01c9f8c Simple optimizations: by Raymond Hettinger · 20 years ago
  7. 4b49823 make sure the default manifest generation includes files identified as by Fred Drake · 20 years ago
  8. 91e83e2 Added more Windows version names (thanks to Thomas Heller). by Marc-André Lemburg · 20 years ago
  9. 9001cde Fix last patch to be backwards-compatible with Python 1.5.2 . by Brett Cannon · 20 years ago
  10. 21beb4c Fixed a caching bug in platform.platform() where the argument of 'terse' was by Brett Cannon · 20 years ago
  11. 1c0f1f9 Defer compilation of regular expressions until first use. by Martin v. Löwis · 20 years ago
  12. bc503d1 Use True/False instead of 0/1 for character classes. by Martin v. Löwis · 20 years ago
  13. 91a968a Ensure super() lookup of descriptor from classmethod works (SF #743627) by Phillip J. Eby · 20 years ago
  14. f167dc3 fix name in setacl method doc string by Piers Lauder · 20 years ago
  15. c69ebe8 Enable the profiling of C functions (builtins and extensions) by Nicholas Bastin · 20 years ago
  16. a1dde13 Add test case for unicode(somestring, "idna"). by Martin v. Löwis · 20 years ago
  17. aaeffaf Replace sequential split/join calls on strings with a single replace call. by Brett Cannon · 20 years ago
  18. 708b4da Convert input to a string object. Fixes #909230. Backported 2.3. by Martin v. Löwis · 20 years ago
  19. 69200fa Replace code in urllib for basejoin (undocumented) with urlparse.urljoin . by Brett Cannon · 20 years ago
  20. 48713e8 Add runctx to __all__. by Guido van Rossum · 20 years ago
  21. 824b1b2 Added command line options for profile.py - one for stats output file by Nicholas Bastin · 20 years ago
  22. 05f842b Basic dependency checking. setup() has two new optional arguments by Anthony Baxter · 20 years ago
  23. a3837a0 Patch #911176: Move test function into __main__ by Martin v. Löwis · 20 years ago
  24. 1eb4bfc Added global runctx function to profile to fix SF Bug #716587 by Nicholas Bastin · 20 years ago
  25. 7069338 The fix in ceval.c 2.386 allows iteration-by-iteration line tracing even in by Armin Rigo · 20 years ago
  26. ee6c9b8 Fix (really) for tight loop line events by Nicholas Bastin · 20 years ago
  27. fa7bec7 Test for tight loop line event fix, SF bug #765624 by Nicholas Bastin · 20 years ago
  28. aea9459 Test for lack of implicit return line event by Nicholas Bastin · 20 years ago
  29. 39a0f04 New parser. Next up, making the current parser use this parser by Anthony Baxter · 20 years ago
  30. 3f60629 SF bug 847019 datetime.datetime initialization needs more strict checking by Tim Peters · 20 years ago
  31. 8d9b60f Change parse_qsl() to accept control-name's with no equal sign (e.g., "name") by Brett Cannon · 20 years ago
  32. 6680341 Normalized files in test_unicode_file to eliminate failure on OSX by Nicholas Bastin · 20 years ago
  33. 67867ea [Part of patch #909005] Added map parameter for file_dispatcher and dispatcher_with_send by Andrew M. Kuchling · 20 years ago
  34. 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
  35. 419af88 [Part of patch #909005] Remove Mac code for writable by Andrew M. Kuchling · 20 years ago
  36. 0ebbbe3 [Part of patch #909005] Set initial poll flags by Andrew M. Kuchling · 20 years ago
  37. 68522b1 [Part of patch #909005] Use True/False by Andrew M. Kuchling · 20 years ago
  38. 56d7913 [Patch #900071] Be case-insensitive when removing 'usage:' string by Andrew M. Kuchling · 20 years ago
  39. 9303777 [Part of patch #909005] Handle POLLPRI flag, and various errors cases. Fixes bug #887279 by Andrew M. Kuchling · 20 years ago
  40. 6602520 SF bug 917108: warnings.py does not define _test(). by Tim Peters · 20 years ago
  41. 433fa69 Patch #853488: Add hlist entry_configure and entry_cget methods. by Martin v. Löwis · 20 years ago
  42. 4848557 Remove unused instance attributes. by Neil Schemenauer · 20 years ago
  43. 46cf4fc Back out last patch that removed an entry from sys.path if it was not an by Brett Cannon · 20 years ago
  44. c82208e Deal with case of when locale time values has characters that can be mistaken by Brett Cannon · 20 years ago
  45. 4f65331 Limit the nesting depth of a tuple passed as the second argument to by Brett Cannon · 20 years ago
  46. 70ec0b4 Fix for SF 777848. by Guido van Rossum · 20 years ago
  47. 27f4961 SF patch 508730 CGIHTTPServer execfile should save cwd by Tim Peters · 20 years ago
  48. cc45466 Remove non-existent paths. by Brett Cannon · 20 years ago
  49. 497331f Fix how line endings were handled when iterating over a .pth file by stripping by Brett Cannon · 20 years ago
  50. 1e13054 test_email: comment out two fail-test cases that no longer fail with the new by Thomas Wouters · 20 years ago
  51. 934d31b Speed HMAC.copy() by installing a secret backdoor argument to by Tim Peters · 20 years ago
  52. 0813d76 Merge in Anthony's new parser code, from the anthony-parser-branch: by Thomas Wouters · 20 years ago
  53. 6fd0b0d commit the portion of PyXML patch #919008 that is relevant to the by Fred Drake · 20 years ago
  54. 5c5316f Add a new unicode codec: ptcp154 (Kazakh) by Hye-Shik Chang · 20 years ago
  55. 1281f76 * supply a more useful error message when append() is called on the by Gregory P. Smith · 20 years ago
  56. bce64ec bugfix for people executing test_all to run the test suite. (call the by Gregory P. Smith · 20 years ago
  57. 6e4620b 1. Make builtin foreground Royal Purple instead of Barney Purple. by Kurt B. Kaiser · 20 years ago
  58. cd1e8a9 Port test_binascii.py to PyUnit and enhance tests. by Walter Dörwald · 20 years ago
  59. 0bc3d98 1. Bug in Patch 805830 fixed by Nigel Rowe by Kurt B. Kaiser · 20 years ago
  60. deb4da5 Add missing docstrings. by Raymond Hettinger · 20 years ago
  61. 49f9bd1 SF feature request #686323: Minor array module enhancements by Raymond Hettinger · 20 years ago
  62. 118e127 Two issues spotted by Ronald OUssoren: by Jack Jansen · 20 years ago
  63. c32cec1 Don't use "dict" as a variable, it shadows the builtin. Spotted by Bob Ippolito. by Jack Jansen · 20 years ago
  64. 0576d0a Force option should be applied to a single package, not recursively by Jack Jansen · 20 years ago
  65. 2d95f1a SF patch #911431: robot.txt must be robots.txt (Contributed by George Yoshida.) by Raymond Hettinger · 20 years ago
  66. 3aa82c0 SF bug #910986: copy.copy fails for array.array by Raymond Hettinger · 20 years ago
  67. 989ddc0 - Added a downloader using urllib2 in stead of curl, based on code by Jack Jansen · 20 years ago
  68. 6cbba50 Make test_coercion.py less sensitive to platform fp quirks. Closes by Neil Schemenauer · 20 years ago
  69. ef9bf40 Tidied up the implementations of reversed (including the custom ones by Raymond Hettinger · 20 years ago
  70. d2c3626 Eliminate the double reverse option. It's only use case by Raymond Hettinger · 20 years ago
  71. 4b6b7f1 Remove calls to currentThread() in _Condition methods that were side-effect. by Brett Cannon · 21 years ago
  72. 6ec0996 SF patch #907403: Improvements to cStringIO.writelines() by Raymond Hettinger · 21 years ago
  73. 73360a3 Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe by Kurt B. Kaiser · 21 years ago
  74. 4102478 Removed spurious import statement by Vinay Sajip · 21 years ago
  75. f0e3569 Refactor the copy dispatcher code in copy.py. Simplifies and shortens by Raymond Hettinger · 21 years ago
  76. 8172ac3 Deal with possible case of having time.tzname[1] containing UTC or GMT. by Brett Cannon · 21 years ago
  77. dd80f76 SF patch #910929: Optimize list comprehensions by Raymond Hettinger · 21 years ago
  78. 31017ae SF #904720: dict.update should take a 2-tuple sequence like dict.__init_ by Raymond Hettinger · 21 years ago
  79. 47db165 Fixed invalid syntax. by Sjoerd Mullender · 21 years ago
  80. d1080a3 Have strftime() check its time tuple argument to make sure the tuple's values by Brett Cannon · 21 years ago
  81. 0a4977c Replace left(), right(), and __reversed__() with the more general purpose by Raymond Hettinger · 21 years ago
  82. 9a8d55e Cleanup: remove test file after it is used. by Neal Norwitz · 21 years ago
  83. 738ec90 Improvements to collections.deque(): by Raymond Hettinger · 21 years ago
  84. 192bd96 getDefaultDatabase() should be a toplevel function, not a method of the by Jack Jansen · 21 years ago
  85. afd63b9 Started on version 0.4: better scheme for finding correct database: by Jack Jansen · 21 years ago
  86. 3f74284 Minor documentation changes by Vinay Sajip · 21 years ago
  87. d594849 Ignore sizehint argument. Fixes SF #844561. by Marc-André Lemburg · 21 years ago
  88. a7befda Fixes SF bug # 778421 by Gregory P. Smith · 21 years ago
  89. 904de5b Make _spawn_posix be ready for EINTR. waitpid(2) can be interrupted by Hye-Shik Chang · 21 years ago
  90. b3ee6f9 Fix two bugs in the new do_open() implementation for HTTPHandler. by Jeremy Hylton · 21 years ago
  91. 2b55d35 Reflow long line. by Jeremy Hylton · 21 years ago
  92. 361d66d Fix wrong character mapping in koi8_u: SF bug #902501. by Marc-André Lemburg · 21 years ago
  93. f42d95e Added close() (which flushes) to BufferingHandler and tidied MemoryHandler.close() [SF #901330] by Vinay Sajip · 21 years ago
  94. 3f9f84d Handler close() functions call flush() [SF #901330] by Vinay Sajip · 21 years ago
  95. 8036c83 adding passing test. testing for g(*Nothing()) where Nothing is a user-defined iterator. by Samuele Pedroni · 21 years ago
  96. 0bc9c91 Use the right wininstXX.exe, depending on msvccompiler.get_build_version(). by Thomas Heller · 21 years ago
  97. 612371d wininst-6.exe and wininst-7.1.exe are in CVS, so that they can be by Thomas Heller · 21 years ago
  98. 90b0f1c wininst.exe is no longer used - we now need wininst-6.exe or wininst-7.1.exe. by Thomas Heller · 21 years ago
  99. 4ae4f83 Recompiled the binary wininst.exe. by Thomas Heller · 21 years ago
  100. a19cdad Patch #892660 from Mark Hammond, for distutils bdist_wininst command. by Thomas Heller · 21 years ago