1. 31f119e Proper testing of proto 2 in part requires checking that the new opcodes by Tim Peters · 23 years ago
  2. 7aa56c9 test_float_overflow(): make shuge (added last week) a little less by Guido van Rossum · 23 years ago
  3. 9a0db07 test_support.requires(): Instead of raising TestSkipped, raise a new by Fred Drake · 23 years ago
  4. 7a2d7a7 Remove test_b1 and test_b2 from the list of tests by Walter Dörwald · 23 years ago
  5. 49992f9 cPickle now implements enough of protocol 2 to enable all cross-pickling tests. by Guido van Rossum · 23 years ago
  6. 1d63c9f cPickle support for TUPLE[123]. Incidentally plugged several undetected by Tim Peters · 23 years ago
  7. 3c67d79 Implemented proto 2 NEWTRUE and NEWFALSE in cPickle. by Tim Peters · 23 years ago
  8. 70b02d7 Beefed up the tests by putting in more "for proto in protocols:" outer by Tim Peters · 23 years ago
  9. 4190fb8 Add cPickle support for PROTO. Duplicated PROTO/LONG1/LONG4 code in by Tim Peters · 23 years ago
  10. bf2674b long(string, base) now takes time linear in len(string) when base is a by Tim Peters · 23 years ago
  11. ee1a53c cPickle.c: Full support for the new LONG1 and LONG4. Added comments. by Tim Peters · 23 years ago
  12. b57f8f0 There's no good reason for datetime objects to expose __getstate__() by Tim Peters · 23 years ago
  13. 874d9bc Neaten ref count test. by Raymond Hettinger · 23 years ago
  14. 1f1b2d2 Removed all uses of the out-of-favor __safe_for_unpickling__ magic by Tim Peters · 23 years ago
  15. 96ef811 Move itertools module from the sandbox and into production. by Raymond Hettinger · 23 years ago
  16. 96940c9 Changed the tests to stop using __setstate__(). __setstate__() no by Tim Peters · 23 years ago
  17. 4f0dcc9 Provide __module__ attributes for functions defined in C and Python. by Jeremy Hylton · 23 years ago
  18. 2e0b18a Change the treatment of positions returned by PEP293 by Walter Dörwald · 23 years ago
  19. 177e41a Change the approach to pickling to use __reduce__ everywhere. Most by Guido van Rossum · 23 years ago
  20. e14295c pickle.py has a few doctest'ed internal functions, so run their tests. by Tim Peters · 23 years ago
  21. b4ff111 Check whether the choosen encoding requires byte swapping by Walter Dörwald · 23 years ago
  22. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 23 years ago
  23. 6afc5e0 - The mac-specific tests should also be run on darwin. by Jack Jansen · 23 years ago
  24. 5e83b7a Teach the parsermodule about floor division. Fixes by Michael W. Hudson · 23 years ago
  25. 090da4b Moved aepack test code to the test suite. by Jack Jansen · 23 years ago
  26. 0322d0f Test all three EXT opcodes, and move these tests into by Guido van Rossum · 23 years ago
  27. ecd79eb Expect test_macostools and test_macfs to get skipped whenever by Tim Peters · 23 years ago
  28. addc585 Test aliases too. by Jack Jansen · 23 years ago
  29. 47a6b13 Temporary hacks to arrange that the pickle tests relying on protocol 2 by Tim Peters · 23 years ago
  30. dcaa24e Renamed "bin" arguments to "proto". Note that this test currently by Tim Peters · 23 years ago
  31. c8d6ef5 Add a test for a list subclass with a __dict__ as well as slots. by Guido van Rossum · 23 years ago
  32. 10882f6 Finally created the first two tests for MacPython modules: macfs and macostools. by Jack Jansen · 23 years ago
  33. fe8d84d Comment out a test that was anticipating SF patch 661536 -- but that by Guido van Rossum · 23 years ago
  34. 3d8c01b The default __reduce__ on the base object type obscured any by Guido van Rossum · 23 years ago
  35. abcb0c0 Fix SF bug# 676155, RuntimeWarning with tp_compare by Neal Norwitz · 23 years ago
  36. 533dbcf Some experimental support for generating NEWOBJ with proto=2, and by Guido van Rossum · 23 years ago
  37. 53b39d2 Verify treatment of unary minus on negative numbers SF bug #660455. by Guido van Rossum · 23 years ago
  38. 7d97d31 OK, this is really the last one tonight! by Guido van Rossum · 23 years ago
  39. 025bc2f Shouldn't test short tuples with all items equal -- one potential bug by Guido van Rossum · 23 years ago
  40. 44f0ea5 More protocol 2: TUPLE1, TUPLE2, TUPLE3. by Guido van Rossum · 23 years ago
  41. 9d32bb1 Rename 'bin' arg to 'proto'. Keep the default at 0 lest the tests by Guido van Rossum · 23 years ago
  42. d6c9e63 First baby steps towards implementing protocol 2: PROTO, LONG1 and LONG4. by Guido van Rossum · 23 years ago
  43. 8ecfc8e Moving pickletools.py from the sandbox into the std library. I started by Tim Peters · 23 years ago
  44. 40e1ce4 Repaired spelling of "test_iconv_codecs" in various expected-skip lists. by Tim Peters · 23 years ago
  45. bf51707 Fix comment typos by Walter Dörwald · 23 years ago
  46. ca87aef Patch #670715: Universal Unicode Codec for POSIX iconv. by Martin v. Löwis · 23 years ago
  47. 692d292 Test that True can be copied. by Martin v. Löwis · 23 years ago
  48. 9789aef Patch #670715: Universal Unicode Codec for POSIX iconv. by Martin v. Löwis · 23 years ago
  49. 8afd757 Patch #636005: Filter unicode into unicode. by Martin v. Löwis · 23 years ago
  50. fd6aaa1 Synchronize with PyXML's 1.33: Import missing modules. by Martin v. Löwis · 23 years ago
  51. aa5af8d Merge PyXML 1.11-1.26: by Martin v. Löwis · 23 years ago
  52. 8d81a01 date and datetime comparison: when we don't know how to by Tim Peters · 23 years ago
  53. 7fc2cca A very minimal start to a test of the shutil module. by Barry Warsaw · 23 years ago
  54. 2a44a8d SF bug 660872: datetimetz constructors behave counterintuitively (2.3a1). by Tim Peters · 23 years ago
  55. 10cadce Reimplemented datetime.now() to be useful. by Tim Peters · 23 years ago
  56. ba60319 Fix for SF bug 661340: test_httplib fails on the mac. by Jeremy Hylton · 23 years ago
  57. 52dcce2 Bringing the code and test suite into line with doc and NEWS changes by Tim Peters · 23 years ago
  58. 2a1d516 Fix from Vinaj for the "writing to closed file" errors. SF 670390. by Guido van Rossum · 23 years ago
  59. 327098a New rule for tzinfo subclasses handling both standard and daylight time: by Tim Peters · 23 years ago
  60. ea4250d Add comments and remove duplicate tests. by Walter Dörwald · 23 years ago
  61. e28be59 Port test_userdict.py to PyUnit. From SF patch #662807, by Walter Dörwald · 23 years ago
  62. 28256f2 Port test_unicode.py to PyUnit and add tests for error by Walter Dörwald · 23 years ago
  63. 919497e Combine test_b1.py and test_b2.py into test_builtin.py, by Walter Dörwald · 23 years ago
  64. 9543b34 SF patch #670423: Add missing identity tests to operator.c by Raymond Hettinger · 23 years ago
  65. 08e5427 SF patch 670012: Compatibility changes for _strptime.py. by Tim Peters · 23 years ago
  66. 7b0cf76 * Migrate sample distribution test from random.py to test_random.py. by Raymond Hettinger · 23 years ago
  67. 6aa1c3f Let test_random cover the endpoints. by Raymond Hettinger · 23 years ago
  68. a9f18dc Test optional slice arguments. Add backwards compatibility test. by Raymond Hettinger · 23 years ago
  69. 4422375 Added doctest for examples in the library reference. by Raymond Hettinger · 23 years ago
  70. d230550 Convert to unittest format so that more tests can be added cleanly. by Raymond Hettinger · 23 years ago
  71. d800ae1 This test previously failed when run from the 'test' directory. In that by Mark Hammond · 23 years ago
  72. 8834009 On Mac OS X calling setlocale will raise locale.Error. This isn't fatal, by Jack Jansen · 23 years ago
  73. 2dc505e * Add test for __cmp__() by Raymond Hettinger · 23 years ago
  74. ddc82ea A new test here was failing on Windows, because the test before it never by Tim Peters · 23 years ago
  75. 1a99750 Fix SF bug #667147, Segmentation fault printing str subclass by Neal Norwitz · 23 years ago
  76. a9bc168 Got rid of the internal datetimetz type. by Tim Peters · 23 years ago
  77. e604c02 SF #665913, Fix mmap module core dump with unix by Neal Norwitz · 23 years ago
  78. 37f3982 Got rid of the timetz type entirely. This was a bit trickier than I by Tim Peters · 23 years ago
  79. 6706c4d cleaned up Jack's Mac OS9 changes by Just van Rossum · 23 years ago
  80. 0cb27dd Make the test scripts work again with narrow Python builds. by Walter Dörwald · 23 years ago
  81. 30537a4 Add a few test cases to increase code coverage: by Walter Dörwald · 23 years ago
  82. 395bb49 Add a test that exercises the error handling part of PyUnicode_EncodeDecimal(). by Walter Dörwald · 23 years ago
  83. 0bf60bd Utterly minimal changes to collapse datetimetz into datetime, and timetz by Tim Peters · 23 years ago
  84. 472e7db Various tweaks to make the test work on the Mac. by Jack Jansen · 23 years ago
  85. 6797514 Updated the list of expected skips for MacPython-OS9. by Jack Jansen · 23 years ago
  86. 2918ae8 n the Mac the frozen import that should fail actually succeeds, and we know it, so skip the test in stead of confusing the end user. by Jack Jansen · 23 years ago
  87. ce92147 Added the Mac to platforms that don't have user/group/other modes. by Jack Jansen · 23 years ago
  88. 7511bd9 - be explicit: audio data files should be opened in binary mode by Fred Drake · 23 years ago
  89. dca3f2f Enable building and testing of ossaudiodev for Linux. by Guido van Rossum · 23 years ago
  90. 373c741 Fix for SF bug #642358: only provide a new with a __dict__ or by Guido van Rossum · 23 years ago
  91. 625812f SF patch #662433: Fill arraymodule's tp_iter and sq_contains slots by Raymond Hettinger · 23 years ago
  92. 613f24f Add a test for a feature added in rev. 2.82 of typeobject.c: by Guido van Rossum · 23 years ago
  93. 2720b0d Add some print statements in verbose mode to announce that the newest by Guido van Rossum · 23 years ago
  94. f09b88e * add mms (windows media) as another scheme * reformat schemes to 80 columns by Skip Montanaro · 23 years ago
  95. 4f37418 Disable the rexec test now that rexec is out of grace. by Guido van Rossum · 23 years ago
  96. 38abbf5 Remove bastion test output by Guido van Rossum · 23 years ago
  97. 11ae4e2 Disable the Bastion test now that Bastion is out of grace. by Guido van Rossum · 23 years ago
  98. 68b539e SF feature #618024, urlparse fails on imap:// by Neal Norwitz · 23 years ago
  99. b9ef4ae SF #651082, tarfile module implementation from Lars Gustäbel by Neal Norwitz · 23 years ago
  100. 502b9e1 At least one Solaris box in the snake farm only supports "C" locale. by Neal Norwitz · 23 years ago