summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
...
* cPickle now implements enough of protocol 2 to enable allGuido van Rossum2003-02-031-3/+3
* cPickle support for TUPLE[123]. Incidentally plugged several undetectedTim Peters2003-02-021-0/+31
* Implemented proto 2 NEWTRUE and NEWFALSE in cPickle.Tim Peters2003-02-021-0/+6
* Beefed up the tests by putting in more "for proto in protocols:" outerTim Peters2003-02-021-86/+231
* Add cPickle support for PROTO. Duplicated PROTO/LONG1/LONG4 code inTim Peters2003-02-021-2/+23
* long(string, base) now takes time linear in len(string) when base is aTim Peters2003-02-021-10/+1
* cPickle.c: Full support for the new LONG1 and LONG4. Added comments.Tim Peters2003-02-021-11/+49
* There's no good reason for datetime objects to expose __getstate__()Tim Peters2003-02-011-12/+0
* Neaten ref count test.Raymond Hettinger2003-02-011-1/+1
* Removed all uses of the out-of-favor __safe_for_unpickling__ magicTim Peters2003-02-011-2/+0
* Move itertools module from the sandbox and into production.Raymond Hettinger2003-02-011-0/+158
* Changed the tests to stop using __setstate__(). __setstate__() noTim Peters2003-01-311-65/+31
* Provide __module__ attributes for functions defined in C and Python.Jeremy Hylton2003-01-311-0/+4
* Change the treatment of positions returned by PEP293Walter Dörwald2003-01-311-22/+74
* Change the approach to pickling to use __reduce__ everywhere. MostGuido van Rossum2003-01-301-53/+49
* pickle.py has a few doctest'ed internal functions, so run their tests.Tim Peters2003-01-301-0/+1
* Check whether the choosen encoding requires byte swappingWalter Dörwald2003-01-301-10/+14
* Implement appropriate __getnewargs__ for all immutable subclassable builtinGuido van Rossum2003-01-292-7/+57
* - The mac-specific tests should also be run on darwin.Jack Jansen2003-01-291-1/+2
* Teach the parsermodule about floor division. FixesMichael W. Hudson2003-01-291-0/+5
* Moved aepack test code to the test suite.Jack Jansen2003-01-291-0/+84
* Test all three EXT opcodes, and move these tests intoGuido van Rossum2003-01-291-0/+61
* Expect test_macostools and test_macfs to get skipped wheneverTim Peters2003-01-291-24/+8
* Test aliases too.Jack Jansen2003-01-281-1/+20
* Temporary hacks to arrange that the pickle tests relying on protocol 2Tim Peters2003-01-282-3/+13
* Renamed "bin" arguments to "proto". Note that this test currentlyTim Peters2003-01-281-6/+6
* Add a test for a list subclass with a __dict__ as well as slots.Guido van Rossum2003-01-281-0/+17
* Finally created the first two tests for MacPython modules: macfs andJack Jansen2003-01-282-0/+138
* Comment out a test that was anticipating SF patch 661536 -- but thatGuido van Rossum2003-01-281-6/+6
* The default __reduce__ on the base object type obscured anyGuido van Rossum2003-01-281-23/+14
* Fix SF bug# 676155, RuntimeWarning with tp_compareNeal Norwitz2003-01-282-2/+5
* Some experimental support for generating NEWOBJ with proto=2, andGuido van Rossum2003-01-281-0/+39
* Verify treatment of unary minus on negative numbers SF bug #660455.Guido van Rossum2003-01-281-0/+7
* OK, this is really the last one tonight!Guido van Rossum2003-01-281-0/+7
* Shouldn't test short tuples with all items equal -- one potential bugGuido van Rossum2003-01-281-4/+4
* More protocol 2: TUPLE1, TUPLE2, TUPLE3.Guido van Rossum2003-01-281-0/+12
* Rename 'bin' arg to 'proto'. Keep the default at 0 lest the testsGuido van Rossum2003-01-281-4/+4
* First baby steps towards implementing protocol 2: PROTO, LONG1 and LONG4.Guido van Rossum2003-01-281-0/+14
* Moving pickletools.py from the sandbox into the std library. I startedTim Peters2003-01-271-0/+3
* Repaired spelling of "test_iconv_codecs" in various expected-skip lists.Tim Peters2003-01-271-3/+3
* Fix comment typosWalter Dörwald2003-01-271-3/+4
* Patch #670715: Universal Unicode Codec for POSIX iconv.Martin v. Löwis2003-01-271-0/+95
* Test that True can be copied.Martin v. Löwis2003-01-261-0/+4
* Patch #670715: Universal Unicode Codec for POSIX iconv.Martin v. Löwis2003-01-261-0/+3
* Patch #636005: Filter unicode into unicode.Martin v. Löwis2003-01-251-0/+6
* Synchronize with PyXML's 1.33: Import missing modules.Martin v. Löwis2003-01-251-3/+6
* Merge PyXML 1.11-1.26:Martin v. Löwis2003-01-251-24/+732
* date and datetime comparison: when we don't know how toTim Peters2003-01-241-0/+38
* A very minimal start to a test of the shutil module.Barry Warsaw2003-01-241-0/+28
* SF bug 660872: datetimetz constructors behave counterintuitively (2.3a1).Tim Peters2003-01-231-1/+15