1. 9fc8a29 Fix for SF bug 551412. When _PyType_Lookup() is called on a type by Guido van Rossum · 22 years ago
  2. 4b46c0a Don't require Unicode support. by Guido van Rossum · 22 years ago
  3. ef4d4bd Whitespace normalized. by Raymond Hettinger · 22 years ago
  4. c32f033 Deprecated Random.cunifvariate clearing bug 506647. Also, added docstrings. by Raymond Hettinger · 22 years ago
  5. 8ac1495 Whitespace normalization. by Tim Peters · 22 years ago
  6. f655328 parseaddr(): Fixed in the same way that Message.getaddrlist() was by Barry Warsaw · 22 years ago
  7. 12424bc force gzip module to open files using 'b'inary mode. closes patch #536278. by Skip Montanaro · 22 years ago
  8. d4e5be5 Closes: #556025 seg fault when doing list(xrange(1e9)) by Neal Norwitz · 22 years ago
  9. 4319315 Bump to version 2.0.4 by Barry Warsaw · 22 years ago
  10. 4be9ecc getaddresses(): Like the change in rfc822.py, this one needs to access by Barry Warsaw · 22 years ago
  11. 012ed5d add BooleanType by Skip Montanaro · 22 years ago
  12. 5e355b2 In both spilldata() functions, pretend that the docstring for by Guido van Rossum · 22 years ago
  13. 0a8d4d5 Message.getaddrlist(): Use the AddressList.addresslist attribute by Barry Warsaw · 22 years ago
  14. 97394bc Patch 533291. Deprecate None return form of __reduce__. by Raymond Hettinger · 22 years ago
  15. 2513357 Munge the RCS keywords to avoid updates, so the version number matches that by Fred Drake · 22 years ago
  16. 755f75e Use types.StringTypes instead of explicit (str, unicode) list by Michael W. Hudson · 22 years ago
  17. 7b7ba54 Guess what? --disable-unicode proofing. by Michael W. Hudson · 22 years ago
  18. f207277 More --disable-unicode stuff. by Michael W. Hudson · 22 years ago
  19. 3704644 Use types.StringTypes instead of (types.StringType, types.UnicodeType) -- by Michael W. Hudson · 22 years ago
  20. 9c37306 tolerate --disable-unicode... by Michael W. Hudson · 22 years ago
  21. 7c6a4ad More mindless --disable-unicode proofing. by Michael W. Hudson · 22 years ago
  22. 286225b easy --disable-unicode proofing. by Michael W. Hudson · 22 years ago
  23. 6d86f83 A test message w/ CRLF line endings by Barry Warsaw · 22 years ago
  24. e0d85c8 Add two new tests of recent email package fixes: CRLF line endings, by Barry Warsaw · 22 years ago
  25. 7e21b67 I've thought about it some more, and I believe it is proper for the by Barry Warsaw · 22 years ago
  26. 812031b Fixed a bug in the splitting of lines, and improved the splitting for by Barry Warsaw · 22 years ago
  27. 8c1aac2 Complete a merge of the mimelib project and the Python cvs codebases by Barry Warsaw · 22 years ago
  28. 2ae8753 Added Mitchell Surface's regression tests for base64. Closes patch #550002. by Raymond Hettinger · 22 years ago
  29. 8bf46e4 This is patch by Michael W. Hudson · 22 years ago
  30. d1fa3db Added docstrings excerpted from Python Library Reference. Closes patch 556161. by Raymond Hettinger · 22 years ago
  31. 55956c9 Fixed bug: Split RPC message into two parts instead of three by Chui Tey · 22 years ago
  32. 30d59ba Simplify code to remove an unnecessary test. by Fred Drake · 22 years ago
  33. 570764d Use spaces, not tabs for indents. by Guido van Rossum · 22 years ago
  34. 2d2b51b Added tests for new degree/radian conversions. by Raymond Hettinger · 22 years ago
  35. b760efb Closes patch 529408 deprecating random.stdgamma(). by Raymond Hettinger · 22 years ago
  36. bdc8289 smtp_RCPT(): Removed a somewhat embarrassing debugging line, found by by Barry Warsaw · 22 years ago
  37. ca6cdc2 Closes SF bug 527139. Moved temp variables inside guard. by Raymond Hettinger · 22 years ago
  38. 4402241 Jim Fulton reported a segfault in dir(). A heavily proxied object by Guido van Rossum · 22 years ago
  39. df4dabd SF 554663. Add OpenBSD3. Bugfix candidate if anyone cares. by Guido van Rossum · 22 years ago
  40. 6a1bd39 SF 554073. Fix typo in error reporting of unrecognized character by Guido van Rossum · 22 years ago
  41. e1c67d1 Make StringIO work in --disable-unicode builds... by Michael W. Hudson · 22 years ago
  42. 64108af Adds tests for degrees() and radians() functions added to mathmodule. by Raymond Hettinger · 22 years ago
  43. 39a86c2 SF bug 555042: zip() may trigger MemoryError. by Tim Peters · 22 years ago
  44. e874fc3 Closes SF patch 553277. Per GvR, reverting to original patch -- the way to by Raymond Hettinger · 22 years ago
  45. e037665 Use isinstance() in preference to comparison of type by is. by Jeremy Hylton · 22 years ago
  46. a8dd094 Patch #553277: Accept callbacks that are callable, not callbacks that are true. by Martin v. Löwis · 22 years ago
  47. 0b5c112 Prevent convert_path from crashing if the path is an empty string. Bugfix candidate. by Andrew M. Kuchling · 22 years ago
  48. 46c04e1 random.gauss() uses a piece of hidden state used by nothing else, by Tim Peters · 22 years ago
  49. e08fda9 Remove all tests that rely on deprecated-in-2.2 features of xrange objects. by Fred Drake · 22 years ago
  50. a066f46 Patch 550804: Make os.environ.copy() return a copy. by Martin v. Löwis · 22 years ago
  51. e0e890a Added regression tests for xrange object attributes. See SF bug #551285. by Fred Drake · 22 years ago
  52. 485f340 Buffer-object repitition and concatenation has worked all along; add a test by Fred Drake · 22 years ago
  53. 7f781c9 Add Pickler.clear_memo() so the pickle and cPickle modules are more similar. by Fred Drake · 22 years ago
  54. e41abab Fred's recent changes to support "-u all" resulted in subset resource by Andrew MacIntyre · 22 years ago
  55. 67d687a builtin_zip(): Take a good guess at how big the result list will be, by Tim Peters · 22 years ago
  56. 81b9251 Mostly in SequenceMatcher.{__chain_b, find_longest_match}: by Tim Peters · 22 years ago
  57. 7dab242 - New builtin function enumerate(x), from PEP 279. Example: by Guido van Rossum · 22 years ago
  58. d451ec1 Clean up uses of some deprecated features. by Fred Drake · 22 years ago
  59. 69d31b7 Pass the full pathname to MSVC when compiling a debug version. This by Thomas Heller · 22 years ago
  60. 378498d Append the PC specific include 'PC' and library 'PCBuild' directories by Thomas Heller · 22 years ago
  61. e650080 Fix trivial typo. by Thomas Heller · 22 years ago
  62. 3b04d63 Add more tests for abstract isinstance() and issubclass(). by Neil Schemenauer · 22 years ago
  63. 1e33ffa test_resource has no chance of running on Windows. by Tim Peters · 22 years ago
  64. e12cda9 test_mmap started breaking on Windows, only when run after test_bsddb. by Tim Peters · 22 years ago
  65. 906569d Unit tests for the changes in abstract.c version 2.101. The debug by Barry Warsaw · 22 years ago
  66. 5ca5374 Rewrote the PyUnit description so that it now recommends to use by Barry Warsaw · 22 years ago
  67. 74ce77f Add tests for the recent resource module change. by Jeremy Hylton · 22 years ago
  68. 8570013 Whitespace normalization. Unka Timmy would be proud. by Barry Warsaw · 22 years ago
  69. 256705b SF patch 546244 by John Williams: add Text.dump() method. by Guido van Rossum · 22 years ago
  70. 1476c27 There was a non-ascii character in the source. Replaced by a hex escape. by Jack Jansen · 22 years ago
  71. ae7639d whitespace fixup. test__all__ and test_sundry were failing by Anthony Baxter · 22 years ago
  72. 4ce6b35 don't fail if the audio device is busy, just skip. SF patch 545486 by Anthony Baxter · 22 years ago
  73. 8388895 SF patch [ 545523 ] patch for 514433 bsddb.dbopen (NULL) closes SF #514433 by Anthony Baxter · 22 years ago
  74. de02bcb Apply patch diff.txt from SF feature request http://www.python.org/sf/444708 by Walter Dörwald · 22 years ago
  75. 992d58b Fixes based on ideas from Christopher Smith: by Jack Jansen · 22 years ago
  76. a2bc259 tracking python idle changes: Provisional fix for writefile() [SF bug # 541730] by Steven M. Gava · 22 years ago
  77. 931625d tracking python idle changes: Patch #540583: Open MS Help Docs if available. by Steven M. Gava · 22 years ago
  78. 639295f Enable universal newlines on Windows. Note that NEWS needs more words! by Tim Peters · 22 years ago
  79. ea572b2 Assorted code cleanups for readability. Greatly boosted the size of the by Tim Peters · 22 years ago
  80. 6af3e2d Forward port of patch # 500311: Work around for buggy https servers. by Martin v. Löwis · 22 years ago
  81. 954aed8 Add test for eval() w/ free variables. by Jeremy Hylton · 22 years ago
  82. 8d22b04 Fix com_arglist() and update grammar fragment. by Jeremy Hylton · 22 years ago
  83. c72737e Fix SF #544995 (zlib crash on second flush call) Bug fix by mhammond. by Jeremy Hylton · 22 years ago
  84. 3b959db Fix bug 544473 - "Queue module can deadlock". by Mark Hammond · 22 years ago
  85. afb2c80 ceval.c/do_raise(): Tighten the test to disallow raising an instance of by Tim Peters · 22 years ago
  86. 16af557 Remove more out-of-date comments and clarify explanation of visit(). by Jeremy Hylton · 22 years ago
  87. 3b05c8e Remove out-of-date explanation in doc strings, as reported by Eric C. Newton. by Jeremy Hylton · 22 years ago
  88. 5379dea SF bug 544733: Cygwin test_mmap fix for Python 2.2.1 by Tim Peters · 22 years ago
  89. d99b3e7 SF bug 542984. by Guido van Rossum · 22 years ago
  90. 2ee4be0 Apply diff3.txt from SF patch http://www.python.org/sf/536241 by Walter Dörwald · 22 years ago
  91. 0538f1f Patch #531901 by Mark W. Alexander: adds a new distutils packager by Marc-André Lemburg · 22 years ago
  92. 34f300a Added docstrings to the Profile class. by Fred Drake · 22 years ago
  93. e8fc640 SF bug 544647. by Guido van Rossum · 22 years ago
  94. 4eaf50f test_mktime(): Removed. This wasn't really testing anything useful by Barry Warsaw · 22 years ago
  95. 16f9055 Whitespace normalization, while using non-whitespace literals for by Barry Warsaw · 22 years ago
  96. 6184c11 Expect test_email_codecs to be skipped -- few users or developers will by Guido van Rossum · 22 years ago
  97. 27dba87 Apparently 3 of the tests here rely on trailing whitespace and/or hard by Tim Peters · 22 years ago
  98. 4d9b466 Fewer deprecation warnings. by Tim Peters · 22 years ago
  99. d0cc4f0 resetwarnings(): Remove extra space from docstring guts. by Tim Peters · 22 years ago
  100. 863ac44 Whitespace normalization. by Tim Peters · 22 years ago