summaryrefslogtreecommitdiff
path: root/Lib/test/pickletester.py
Commit message (Expand)AuthorAgeFilesLines
* Restore _pickle module accelerator module.Alexandre Vassalotti2008-06-121-12/+13
* revert the addition of _pickle because it was causing havok with 64-bitBenjamin Peterson2008-06-121-13/+12
* Issue 2917: Merge the pickle and cPickle module.Alexandre Vassalotti2008-06-111-12/+13
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-1/+1
* Rename copy_reg module to copyreg.Alexandre Vassalotti2008-05-111-177/+177
* - A new pickle protocol (protocol 3) is added with explicit supportGuido van Rossum2008-03-171-3/+18
* Removed PyInt_GetMax and sys.maxintChristian Heimes2007-12-041-1/+1
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-12/+12
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-220/+244
* Raise statement normalization in Lib/test/.Collin Winter2007-08-291-1/+1
* Changes in anticipation of stricter str vs. bytes enforcement.Guido van Rossum2007-08-271-14/+15
* SF patch# 1770008 by Christian Heimes (plus some extras).Guido van Rossum2007-08-091-3/+3
* Getting rid of cPickle. Mmm, feels good!Guido van Rossum2007-07-201-6/+0
* Open files in binary mode.Walter Dörwald2007-06-201-2/+2
* Rename checks for test_support.have_unicode (we alwaysWalter Dörwald2007-06-081-11/+8
* Got test_pickletools and test_pickle working.Guido van Rossum2007-05-081-34/+35
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-4/+4
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-021-4/+4
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-0/+32
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-181-2/+2
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-2/+2
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-8/+8
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-2/+2
* Quite a few fixes to make the library and test suite more robust whenGuido van Rossum2006-08-171-2/+6
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-1/+7
* Patch #995766: Keyword argument support in cPickle.Martin v. Löwis2004-07-271-0/+10
* Deleting cyclic object comparison.Armin Rigo2003-10-281-15/+10
* MyComplex now works.Guido van Rossum2003-03-021-1/+1
* test_load_from_canned_string(): Created a DATA2 string to test a cannedTim Peters2003-03-021-2/+66
* Three test cases for __reduce_ex__. This fails for cPickle, until TimGuido van Rossum2003-02-181-0/+52
* cPickle.c, load_build(): Taught cPickle how to pick apartTim Peters2003-02-151-6/+1
* cPickle produces NEWOBJ appropriately now. It still doesn't knowTim Peters2003-02-141-6/+6
* We didn't have any tests making pickles with one of {pickle, cPickle},Tim Peters2003-02-131-0/+5
* Added a simple NEWOBJ test. This is in the pickle-only part of theTim Peters2003-02-131-0/+15
* Added a HIGHEST_PROTOCOL module attribute to pickle and cPickle.Tim Peters2003-02-131-2/+4
* Implemented batching for dicts in cPickle. This is after two failedTim Peters2003-02-111-17/+17
* Implemented list batching in cPickle.Tim Peters2003-02-111-17/+17
* Added tests to ensure that list and dict "chunking" are actuallyTim Peters2003-02-111-1/+51
* cPickle: exempt two_tuple from GC -- it's a speed hack, and doesn'tTim Peters2003-02-041-11/+53
* cPickle now generates proto 2 EXT[124] when appropriate.Tim Peters2003-02-041-18/+18
* test_newobj_tuple(), test_newobj_list(): These tests should work underTim Peters2003-02-031-8/+10
* test_newobj_generic(): Use the global protocols vector instead of aTim Peters2003-02-031-1/+1
* Added a bit to the EXT[124] tests, and refactored them to squash codeTim Peters2003-02-031-51/+27
* Do a better job of testing that opcodes aren't generated under protocolsTim Peters2003-02-031-18/+32
* Proper testing of proto 2 in part requires checking that the new opcodesTim Peters2003-02-031-11/+10
* 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