1. bb2734a Port test_charmapcodec to PyUnit. From SF patch #662807 by Walter Dörwald · 22 years ago
  2. 4b499dd3 - Finally fixed the bug in compile() and exec where a string ending by Guido van Rossum · 22 years ago
  3. 18e36f4 Removed unused cut'n'paste import. by Tim Peters · 22 years ago
  4. c0c9370 We didn't have any tests making pickles with one of {pickle, cPickle}, by Tim Peters · 22 years ago
  5. e9ef203 Added a simple NEWOBJ test. This is in the pickle-only part of the by Tim Peters · 22 years ago
  6. c1eea67 Remove filecmp by Andrew M. Kuchling · 22 years ago
  7. 7585229 Port test_userlist to PyUnit and add a few tests to increase code by Walter Dörwald · 22 years ago
  8. 298e421 SF patch #685738 by Michael Stone. by Guido van Rossum · 22 years ago
  9. 0c016a9 Re-enable compiling ossaudiodev now that it seems to work again. by Guido van Rossum · 22 years ago
  10. 8587b3c Added a HIGHEST_PROTOCOL module attribute to pickle and cPickle. by Tim Peters · 22 years ago
  11. bb18441 SF patch #682432, add lookbehind tests by Neal Norwitz · 22 years ago
  12. 3ea7cc3 Fix typo. by Walter Dörwald · 22 years ago
  13. 7cbd247 Add test to ensure files (fds) don't leak by Neal Norwitz · 22 years ago
  14. 2294c0d Cleanup from patch #683257: by Neal Norwitz · 22 years ago
  15. 3288f59 Expect test_ossaudiodev to skip on Linux, too. (It's broken. by Guido van Rossum · 22 years ago
  16. 9c00f42 Systematic testing of hex/oct constants. by Guido van Rossum · 22 years ago
  17. 66b1259 SF #660455 : patch by NNorwitz. by Guido van Rossum · 22 years ago
  18. a89d10e Implement another useful feature for proxies: in super(X, x), x may by Guido van Rossum · 22 years ago
  19. 03bc7d3 SF #532767: isinstance(x, X) should work when x is a proxy for an X by Guido van Rossum · 22 years ago
  20. 42f08ac Implemented batching for dicts in cPickle. This is after two failed by Tim Peters · 22 years ago
  21. 1092d64 Implemented list batching in cPickle. by Tim Peters · 22 years ago
  22. b6e5a0c Put proper tests in classmethod_get(). Remove the type argument to by Guido van Rossum · 22 years ago
  23. 8d2613a Added tests to ensure that list and dict "chunking" are actually by Tim Peters · 22 years ago
  24. 3f50cdc Get rid of the "bozo" __getstate__ that was inserted when __slots__ by Guido van Rossum · 22 years ago
  25. 4f046e2 Add a few tests to test_count() to increase coverage in by Walter Dörwald · 22 years ago
  26. 7464024 Fix copy&paste error: call title instead of count by Walter Dörwald · 22 years ago
  27. 8dd1932 Change filtertuple() to use tp_as_sequence->sq_item by Walter Dörwald · 22 years ago
  28. 1918f77 Change filterstring() and filterunicode(): If the by Walter Dörwald · 22 years ago
  29. 3aaf42c patch #683515: "Add unicode support to compile(), eval() and exec" by Just van Rossum · 22 years ago
  30. de8b94c Fix SF bug #683467, 'int' ability to generate longs not inherited by Neal Norwitz · 22 years ago
  31. 9caf9c0 Add tests and news entry about parser errors from bug #678518. by Neal Norwitz · 22 years ago
  32. f032f86 patch 680474 that fixes bug 679880: compile/eval/exec refused utf-8 bom by Just van Rossum · 22 years ago
  33. 60eca93 C Code: by Raymond Hettinger · 22 years ago
  34. 68124bb The Python implementation of datetime was changed in ways that no longer by Tim Peters · 22 years ago
  35. 07534a6 Comparison for timedelta, time, date and datetime objects: __eq__ and by Tim Peters · 22 years ago
  36. 275666f Merge the test part of the below checkin to the sandbox and Zope3, so by Guido van Rossum · 22 years ago
  37. 1dca482 Somehow, copy() of a classic class object was handled by Guido van Rossum · 22 years ago
  38. c06e3ac Add support for copy_reg.dispatch_table. by Guido van Rossum · 22 years ago
  39. f631859 Add __getnewargs__ method to classes that need it. by Guido van Rossum · 22 years ago
  40. 2012f17 SF bug #681003: itertools issues by Raymond Hettinger · 22 years ago
  41. 85233bf Fix a bug in the way __getnewargs__ was handled. by Guido van Rossum · 22 years ago
  42. c755758 Support all the new stuff supported by the new pickle code: by Guido van Rossum · 22 years ago
  43. 90e05b0 Support __reduce__ returning a 4-tuple or 5-tuple. by Guido van Rossum · 22 years ago
  44. 581cb93 A test suite for the copy module. This should provide full code coverage. by Guido van Rossum · 22 years ago
  45. e63846d Add test suite for filecmp.py, after some discussion on bug #680494. by Andrew M. Kuchling · 22 years ago
  46. 8440761 SF bug 680864: test_datetime fails for non-unix epoch by Tim Peters · 22 years ago
  47. 6ee0480 [680789] Debug with long array takes forever by Tim Peters · 22 years ago
  48. 5c4ded2 Patch #551977: Regression exceptions for cygwin by Jason Tishler · 22 years ago
  49. b86a2e8 Use os.path.realpath() in stead of abspath(), so the tests don't fail if by Jack Jansen · 22 years ago
  50. 35ad641 Build pickler_choices list in a lazier way. by Tim Peters · 22 years ago
  51. 3e667d5 cPickle: exempt two_tuple from GC -- it's a speed hack, and doesn't by Tim Peters · 22 years ago
  52. 731098b cPickle now generates proto 2 EXT[124] when appropriate. by Tim Peters · 22 years ago
  53. c3da83f Make sure filter() never returns tuple, str or unicode by Walter Dörwald · 22 years ago
  54. 29273c8 Fix for [ 543344 ] Interpreter crashes when recoding; suggested by Marc-André Lemburg · 22 years ago
  55. dbaba0d Added basic tests of copy_reg's extension registry. by Tim Peters · 22 years ago
  56. 5e61e24 Add a test that checks that filter() honors the sq_item slot for by Walter Dörwald · 22 years ago
  57. 903f1e0 filterstring() and filterunicode() in Python/bltinmodule.c by Walter Dörwald · 22 years ago
  58. 105b084 Add refcount test. by Raymond Hettinger · 22 years ago
  59. e7028ac Fix typo. by Walter Dörwald · 22 years ago
  60. c350246 Add a new test script that tests various features of the sys by Walter Dörwald · 22 years ago
  61. 894453a test_newobj_tuple(), test_newobj_list(): These tests should work under by Tim Peters · 22 years ago
  62. 5013bd9 test_newobj_generic(): Use the global protocols vector instead of a by Tim Peters · 22 years ago
  63. 22e7171 Added a bit to the EXT[124] tests, and refactored them to squash code by Tim Peters · 22 years ago
  64. 61bf257 Do a better job of testing that opcodes aren't generated under protocols by Tim Peters · 22 years ago
  65. 7d9ea50 - Thanks to Scott David Daniels, a subtle bug in how the zlib by Guido van Rossum · 22 years ago
  66. 88af4df Fix typos. by Walter Dörwald · 22 years ago
  67. 363f6d6 Port test_pow.py to PyUnit. From SF patch #662807 by Walter Dörwald · 22 years ago
  68. 31f119e Proper testing of proto 2 in part requires checking that the new opcodes by Tim Peters · 22 years ago
  69. 7aa56c9 test_float_overflow(): make shuge (added last week) a little less by Guido van Rossum · 22 years ago
  70. 9a0db07 test_support.requires(): Instead of raising TestSkipped, raise a new by Fred Drake · 22 years ago
  71. 7a2d7a7 Remove test_b1 and test_b2 from the list of tests by Walter Dörwald · 22 years ago
  72. 49992f9 cPickle now implements enough of protocol 2 to enable all cross-pickling tests. by Guido van Rossum · 22 years ago
  73. 1d63c9f cPickle support for TUPLE[123]. Incidentally plugged several undetected by Tim Peters · 22 years ago
  74. 3c67d79 Implemented proto 2 NEWTRUE and NEWFALSE in cPickle. by Tim Peters · 22 years ago
  75. 70b02d7 Beefed up the tests by putting in more "for proto in protocols:" outer by Tim Peters · 22 years ago
  76. 4190fb8 Add cPickle support for PROTO. Duplicated PROTO/LONG1/LONG4 code in by Tim Peters · 22 years ago
  77. bf2674b long(string, base) now takes time linear in len(string) when base is a by Tim Peters · 22 years ago
  78. ee1a53c cPickle.c: Full support for the new LONG1 and LONG4. Added comments. by Tim Peters · 22 years ago
  79. b57f8f0 There's no good reason for datetime objects to expose __getstate__() by Tim Peters · 22 years ago
  80. 874d9bc Neaten ref count test. by Raymond Hettinger · 22 years ago
  81. 1f1b2d2 Removed all uses of the out-of-favor __safe_for_unpickling__ magic by Tim Peters · 22 years ago
  82. 96ef811 Move itertools module from the sandbox and into production. by Raymond Hettinger · 22 years ago
  83. 96940c9 Changed the tests to stop using __setstate__(). __setstate__() no by Tim Peters · 22 years ago
  84. 4f0dcc9 Provide __module__ attributes for functions defined in C and Python. by Jeremy Hylton · 22 years ago
  85. 2e0b18a Change the treatment of positions returned by PEP293 by Walter Dörwald · 22 years ago
  86. 177e41a Change the approach to pickling to use __reduce__ everywhere. Most by Guido van Rossum · 22 years ago
  87. e14295c pickle.py has a few doctest'ed internal functions, so run their tests. by Tim Peters · 22 years ago
  88. b4ff111 Check whether the choosen encoding requires byte swapping by Walter Dörwald · 22 years ago
  89. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 22 years ago
  90. 6afc5e0 - The mac-specific tests should also be run on darwin. by Jack Jansen · 22 years ago
  91. 5e83b7a Teach the parsermodule about floor division. Fixes by Michael W. Hudson · 22 years ago
  92. 090da4b Moved aepack test code to the test suite. by Jack Jansen · 22 years ago
  93. 0322d0f Test all three EXT opcodes, and move these tests into by Guido van Rossum · 22 years ago
  94. ecd79eb Expect test_macostools and test_macfs to get skipped whenever by Tim Peters · 22 years ago
  95. addc585 Test aliases too. by Jack Jansen · 22 years ago
  96. 47a6b13 Temporary hacks to arrange that the pickle tests relying on protocol 2 by Tim Peters · 22 years ago
  97. dcaa24e Renamed "bin" arguments to "proto". Note that this test currently by Tim Peters · 22 years ago
  98. c8d6ef5 Add a test for a list subclass with a __dict__ as well as slots. by Guido van Rossum · 22 years ago
  99. 10882f6 Finally created the first two tests for MacPython modules: macfs and macostools. by Jack Jansen · 22 years ago
  100. fe8d84d Comment out a test that was anticipating SF patch 661536 -- but that by Guido van Rossum · 22 years ago