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