1. bb2734a Port test_charmapcodec to PyUnit. From SF patch #662807 by Walter Dörwald · 22 years ago
  2. 2835e37 SF bug #663701: sets module review by Raymond Hettinger · 22 years ago
  3. a2ecabe Fix docstring typo by Andrew M. Kuchling · 22 years ago
  4. c07fb2f Fix comment typo by Andrew M. Kuchling · 22 years ago
  5. 6143648 SF 685011: calendar module overflow handling by Raymond Hettinger · 22 years ago
  6. 4b499dd3 - Finally fixed the bug in compile() and exec where a string ending by Guido van Rossum · 22 years ago
  7. 18e36f4 Removed unused cut'n'paste import. by Tim Peters · 22 years ago
  8. c0c9370 We didn't have any tests making pickles with one of {pickle, cPickle}, by Tim Peters · 22 years ago
  9. e9ef203 Added a simple NEWOBJ test. This is in the pickle-only part of the by Tim Peters · 22 years ago
  10. c1eea67 Remove filecmp by Andrew M. Kuchling · 22 years ago
  11. 7585229 Port test_userlist to PyUnit and add a few tests to increase code by Walter Dörwald · 22 years ago
  12. 298e421 SF patch #685738 by Michael Stone. by Guido van Rossum · 22 years ago
  13. 0c016a9 Re-enable compiling ossaudiodev now that it seems to work again. by Guido van Rossum · 22 years ago
  14. 8587b3c Added a HIGHEST_PROTOCOL module attribute to pickle and cPickle. by Tim Peters · 22 years ago
  15. bb18441 SF patch #682432, add lookbehind tests by Neal Norwitz · 22 years ago
  16. 3ea7cc3 Fix typo. by Walter Dörwald · 22 years ago
  17. 7cbd247 Add test to ensure files (fds) don't leak by Neal Norwitz · 22 years ago
  18. 2294c0d Cleanup from patch #683257: by Neal Norwitz · 22 years ago
  19. 3288f59 Expect test_ossaudiodev to skip on Linux, too. (It's broken. by Guido van Rossum · 22 years ago
  20. 9c00f42 Systematic testing of hex/oct constants. by Guido van Rossum · 22 years ago
  21. 66b1259 SF #660455 : patch by NNorwitz. by Guido van Rossum · 22 years ago
  22. e71b9f8 - Use distutils to find site-python (suggested by Thomas Heller, thanks!) by Jack Jansen · 22 years ago
  23. c96d6ce Thank you sir, can I have another. by Just van Rossum · 22 years ago
  24. f59c6fa When in MacPython-OSX use bundlebuilder to create .app bundles. by Jack Jansen · 22 years ago
  25. 53b341f - Better way to find site-packages by Jack Jansen · 22 years ago
  26. a89d10e Implement another useful feature for proxies: in super(X, x), x may by Guido van Rossum · 22 years ago
  27. 03bc7d3 SF #532767: isinstance(x, X) should work when x is a proxy for an X by Guido van Rossum · 22 years ago
  28. 42f08ac Implemented batching for dicts in cPickle. This is after two failed by Tim Peters · 22 years ago
  29. e7b33db Changed database format to make fields adhere to PEP 241 where by Jack Jansen · 22 years ago
  30. 1092d64 Implemented list batching in cPickle. by Tim Peters · 22 years ago
  31. b6e5a0c Put proper tests in classmethod_get(). Remove the type argument to by Guido van Rossum · 22 years ago
  32. 8d2613a Added tests to ensure that list and dict "chunking" are actually by Tim Peters · 22 years ago
  33. 3f50cdc Get rid of the "bozo" __getstate__ that was inserted when __slots__ by Guido van Rossum · 22 years ago
  34. ba20533 [ 683376 ] Adding NotImplementedType to types.py by Just van Rossum · 22 years ago
  35. 4f046e2 Add a few tests to test_count() to increase coverage in by Walter Dörwald · 22 years ago
  36. 7464024 Fix copy&paste error: call title instead of count by Walter Dörwald · 22 years ago
  37. 8dd1932 Change filtertuple() to use tp_as_sequence->sq_item by Walter Dörwald · 22 years ago
  38. 8d326b8 Punctuation fixes in docstrings. by Jack Jansen · 22 years ago
  39. 6a600ab Added docstrings. by Jack Jansen · 22 years ago
  40. 26bf3ac - Better exception when the database isn't found. by Jack Jansen · 22 years ago
  41. 4f82a51 Pick up Makefile variable BASECFLAGS too. This is needed since OPT was by Jack Jansen · 22 years ago
  42. c4b217d Use MD5 checksums to check archive integrity and forestall downloads. by Jack Jansen · 22 years ago
  43. 1918f77 Change filterstring() and filterunicode(): If the by Walter Dörwald · 22 years ago
  44. b4bb64e Added preInstall and postInstall commands to packages. PIL needs this by Jack Jansen · 22 years ago
  45. 3aaf42c patch #683515: "Add unicode support to compile(), eval() and exec" by Just van Rossum · 22 years ago
  46. de8b94c Fix SF bug #683467, 'int' ability to generate longs not inherited by Neal Norwitz · 22 years ago
  47. 9caf9c0 Add tests and news entry about parser errors from bug #678518. by Neal Norwitz · 22 years ago
  48. 95839b8 Strawman for a Package Install Manager for Python. It isn't CPAN yet, but at by Jack Jansen · 22 years ago
  49. f032f86 patch 680474 that fixes bug 679880: compile/eval/exec refused utf-8 bom by Just van Rossum · 22 years ago
  50. cf117b0 Rename 'proto' keyword arg to 'protocol' . Greg Ward's suggestion. by Guido van Rossum · 22 years ago
  51. 60eca93 C Code: by Raymond Hettinger · 22 years ago
  52. 68124bb The Python implementation of datetime was changed in ways that no longer by Tim Peters · 22 years ago
  53. 9914227 Fix compatibility for earlier versions of Python (than 2.3), which by Barry Warsaw · 22 years ago
  54. 07534a6 Comparison for timedelta, time, date and datetime objects: __eq__ and by Tim Peters · 22 years ago
  55. 275666f Merge the test part of the below checkin to the sandbox and Zope3, so by Guido van Rossum · 22 years ago
  56. cef9db6 Reserve a range for Zope, not specifically for Zope 3. by Guido van Rossum · 22 years ago
  57. f98159c Fix SF bug #642168, help() fails for some builtin topics by Neal Norwitz · 22 years ago
  58. 1dca482 Somehow, copy() of a classic class object was handled by Guido van Rossum · 22 years ago
  59. c06e3ac Add support for copy_reg.dispatch_table. by Guido van Rossum · 22 years ago
  60. 2731c5c Made AskFile* dialogs movable-modal by default, by providing a dummy by Jack Jansen · 22 years ago
  61. f631859 Add __getnewargs__ method to classes that need it. by Guido van Rossum · 22 years ago
  62. 2012f17 SF bug #681003: itertools issues by Raymond Hettinger · 22 years ago
  63. 550e4e5 SF bug 666444: 'help' makes linefeed only under Win32. by Tim Peters · 22 years ago
  64. caaad98 Got rid of macfs and FSSpecs. by Jack Jansen · 22 years ago
  65. 5aac4e6 Move _better_reduce from copy.py to copy_reg.py, and also use it in by Guido van Rossum · 22 years ago
  66. 85233bf Fix a bug in the way __getnewargs__ was handled. by Guido van Rossum · 22 years ago
  67. c755758 Support all the new stuff supported by the new pickle code: by Guido van Rossum · 22 years ago
  68. 0189266 A few naughty external scripts do 'raise getopt.error, "blah"', and by Andrew M. Kuchling · 22 years ago
  69. 83e879d Add DeprecationWarning when use_statcache argument is supplied by Andrew M. Kuchling · 22 years ago
  70. 98b922c Remove a debug print statement. by Guido van Rossum · 22 years ago
  71. 90e05b0 Support __reduce__ returning a 4-tuple or 5-tuple. by Guido van Rossum · 22 years ago
  72. 581cb93 A test suite for the copy module. This should provide full code coverage. by Guido van Rossum · 22 years ago
  73. 8eb4044 [Bug #680494] filecmp.py uses obsolete statcache module. by Andrew M. Kuchling · 22 years ago
  74. e63846d Add test suite for filecmp.py, after some discussion on bug #680494. by Andrew M. Kuchling · 22 years ago
  75. 8440761 SF bug 680864: test_datetime fails for non-unix epoch by Tim Peters · 22 years ago
  76. cc1fccb No need for a continuation line. by Jeremy Hylton · 22 years ago
  77. 656d451 Replace hasattr() + getattr() with single getattr() and default value. by Jeremy Hylton · 22 years ago
  78. 983b008 Updated version of [ 558544 ] cmd.py: add instance-specific stdin/out by Anthony Baxter · 22 years ago
  79. 64edd6a [Patch #654421 from Matthew Mueller] by Andrew M. Kuchling · 22 years ago
  80. 62235e7 dis(): Added an optional memo argument, so that multiple pickles in a by Tim Peters · 22 years ago
  81. 6ee0480 [680789] Debug with long array takes forever by Tim Peters · 22 years ago
  82. 5c4ded2 Patch #551977: Regression exceptions for cygwin by Jason Tishler · 22 years ago
  83. cf0b2e8 Getting rid of macfs and FSSpecs. by Jack Jansen · 22 years ago
  84. d66071b Got rid of macfs by Jack Jansen · 22 years ago
  85. 769e1ff Fixed a few typos, and changed FSCreateResourceFile filename argument to unicode. by Jack Jansen · 22 years ago
  86. b86a2e8 Use os.path.realpath() in stead of abspath(), so the tests don't fail if by Jack Jansen · 22 years ago
  87. 30a634e SF patch #674396: Apply UserDict.DictMixin to expand dbshelve and dbojb by Raymond Hettinger · 22 years ago
  88. 35ad641 Build pickler_choices list in a lazier way. by Tim Peters · 22 years ago
  89. 3e667d5 cPickle: exempt two_tuple from GC -- it's a speed hack, and doesn't by Tim Peters · 22 years ago
  90. 731098b cPickle now generates proto 2 EXT[124] when appropriate. by Tim Peters · 22 years ago
  91. c3da83f Make sure filter() never returns tuple, str or unicode by Walter Dörwald · 22 years ago
  92. 29273c8 Fix for [ 543344 ] Interpreter crashes when recoding; suggested by Marc-André Lemburg · 22 years ago
  93. dbaba0d Added basic tests of copy_reg's extension registry. by Tim Peters · 22 years ago
  94. 5e61e24 Add a test that checks that filter() honors the sq_item slot for by Walter Dörwald · 22 years ago
  95. 903f1e0 filterstring() and filterunicode() in Python/bltinmodule.c by Walter Dörwald · 22 years ago
  96. 57ba55b - Handle the img and MediaFormat modules not being available (by not by Jack Jansen · 22 years ago
  97. 105b084 Add refcount test. by Raymond Hettinger · 22 years ago
  98. 2d62965 cPickle can load pickles using proto 2 EXT[124] now, but can't yet by Tim Peters · 22 years ago
  99. d4b920c Rename the extension registry variables to have leading underscores -- by Guido van Rossum · 22 years ago
  100. 322d553 Whitespace normalization. by Tim Peters · 22 years ago