summaryrefslogtreecommitdiff
path: root/Lib/test/pickletester.py
Commit message (Expand)AuthorAgeFilesLines
* use assert[Not]In where appropriateEzio Melotti2010-01-231-4/+4
* Issue #7455: Fix possible crash in cPickle on invalid input. Patch byAntoine Pitrou2010-01-071-0/+9
* Issue 7128: Removed reference to the non-existent copyreg module.Alexandre Vassalotti2009-11-241-0/+10
* #6553: crash in cPickle.load(), when given a StringIO with incomplete data.Amaury Forgeot d'Arc2009-07-231-0/+5
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-13/+13
* Issue 5794: fix cPickle's unpickling of recursive tuples.Collin Winter2009-05-261-0/+10
* Isue #5084: unpickling now interns the attribute names of pickled objects,Antoine Pitrou2009-05-021-0/+14
* Issue 5665: add more pickling tests.Collin Winter2009-04-091-12/+182
* Issue #1672332: Fix unpickling of subnormal floats, which was raisingMark Dickinson2009-01-241-0/+10
* Fix bogus unicode tests in pickletester.Alexandre Vassalotti2008-12-271-2/+2
* Fix issue #4730: cPickle corrupts high-unicode strings.Alexandre Vassalotti2008-12-271-2/+9
* Issue #4176: Pickle would crash the interpreter when a __reduce__ functionAmaury Forgeot d'Arc2008-10-301-0/+23
* Revert copy_reg -> copyreg rename.Georg Brandl2008-05-201-9/+9
* Added module stub for copy_reg renaming in 3.0.Alexandre Vassalotti2008-05-111-9/+9
* Patch #1462488: prevent a segfault in object_reduce_ex() by splittingŽiga Seilnacht2007-03-151-0/+32
* Bug #1473625: stop cPickle making float dumps locale dependent in protocol 0.Georg Brandl2006-04-301-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
* 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
* Removed all uses of the out-of-favor __safe_for_unpickling__ magicTim Peters2003-02-011-2/+0
* Implement appropriate __getnewargs__ for all immutable subclassable builtinGuido van Rossum2003-01-291-2/+44
* Test all three EXT opcodes, and move these tests intoGuido van Rossum2003-01-291-0/+61
* Temporary hacks to arrange that the pickle tests relying on protocol 2Tim Peters2003-01-281-0/+6
* Add a test for a list subclass with a __dict__ as well as slots.Guido van Rossum2003-01-281-0/+17
* The default __reduce__ on the base object type obscured anyGuido van Rossum2003-01-281-23/+14
* Some experimental support for generating NEWOBJ with proto=2, andGuido van Rossum2003-01-281-0/+39
* OK, this is really the last one tonight!Guido van Rossum2003-01-281-0/+7