| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 67898,67904-67907,67912,67918,67920-67921,67923-67924,67927,... | Benjamin Peterson | 2008-12-27 | 1 | -2/+2 |
|
|
* | Merged revisions 67934-67935 via svnmerge from | Alexandre Vassalotti | 2008-12-27 | 1 | -2/+9 |
|
|
* | Issue #4176: Pickle would crash the interpreter when a __reduce__ function | Amaury Forgeot d'Arc | 2008-10-30 | 1 | -0/+23 |
|
|
* | Revert copy_reg -> copyreg rename. | Georg Brandl | 2008-05-20 | 1 | -9/+9 |
|
|
* | Added module stub for copy_reg renaming in 3.0. | Alexandre Vassalotti | 2008-05-11 | 1 | -9/+9 |
|
|
* | Patch #1462488: prevent a segfault in object_reduce_ex() by splitting | Žiga Seilnacht | 2007-03-15 | 1 | -0/+32 |
|
|
* | Bug #1473625: stop cPickle making float dumps locale dependent in protocol 0. | Georg Brandl | 2006-04-30 | 1 | -1/+7 |
|
|
* | Patch #995766: Keyword argument support in cPickle. | Martin v. Löwis | 2004-07-27 | 1 | -0/+10 |
|
|
* | Deleting cyclic object comparison. | Armin Rigo | 2003-10-28 | 1 | -15/+10 |
|
|
* | MyComplex now works. | Guido van Rossum | 2003-03-02 | 1 | -1/+1 |
|
|
* | test_load_from_canned_string(): Created a DATA2 string to test a canned | Tim Peters | 2003-03-02 | 1 | -2/+66 |
|
|
* | Three test cases for __reduce_ex__. This fails for cPickle, until Tim | Guido van Rossum | 2003-02-18 | 1 | -0/+52 |
|
|
* | cPickle.c, load_build(): Taught cPickle how to pick apart | Tim Peters | 2003-02-15 | 1 | -6/+1 |
|
|
* | cPickle produces NEWOBJ appropriately now. It still doesn't know | Tim Peters | 2003-02-14 | 1 | -6/+6 |
|
|
* | We didn't have any tests making pickles with one of {pickle, cPickle}, | Tim Peters | 2003-02-13 | 1 | -0/+5 |
|
|
* | Added a simple NEWOBJ test. This is in the pickle-only part of the | Tim Peters | 2003-02-13 | 1 | -0/+15 |
|
|
* | Added a HIGHEST_PROTOCOL module attribute to pickle and cPickle. | Tim Peters | 2003-02-13 | 1 | -2/+4 |
|
|
* | Implemented batching for dicts in cPickle. This is after two failed | Tim Peters | 2003-02-11 | 1 | -17/+17 |
|
|
* | Implemented list batching in cPickle. | Tim Peters | 2003-02-11 | 1 | -17/+17 |
|
|
* | Added tests to ensure that list and dict "chunking" are actually | Tim Peters | 2003-02-11 | 1 | -1/+51 |
|
|
* | cPickle: exempt two_tuple from GC -- it's a speed hack, and doesn't | Tim Peters | 2003-02-04 | 1 | -11/+53 |
|
|
* | cPickle now generates proto 2 EXT[124] when appropriate. | Tim Peters | 2003-02-04 | 1 | -18/+18 |
|
|
* | test_newobj_tuple(), test_newobj_list(): These tests should work under | Tim Peters | 2003-02-03 | 1 | -8/+10 |
|
|
* | test_newobj_generic(): Use the global protocols vector instead of a | Tim Peters | 2003-02-03 | 1 | -1/+1 |
|
|
* | Added a bit to the EXT[124] tests, and refactored them to squash code | Tim Peters | 2003-02-03 | 1 | -51/+27 |
|
|
* | Do a better job of testing that opcodes aren't generated under protocols | Tim Peters | 2003-02-03 | 1 | -18/+32 |
|
|
* | Proper testing of proto 2 in part requires checking that the new opcodes | Tim Peters | 2003-02-03 | 1 | -11/+10 |
|
|
* | cPickle support for TUPLE[123]. Incidentally plugged several undetected | Tim Peters | 2003-02-02 | 1 | -0/+31 |
|
|
* | Implemented proto 2 NEWTRUE and NEWFALSE in cPickle. | Tim Peters | 2003-02-02 | 1 | -0/+6 |
|
|
* | Beefed up the tests by putting in more "for proto in protocols:" outer | Tim Peters | 2003-02-02 | 1 | -86/+231 |
|
|
* | Add cPickle support for PROTO. Duplicated PROTO/LONG1/LONG4 code in | Tim Peters | 2003-02-02 | 1 | -2/+23 |
|
|
* | long(string, base) now takes time linear in len(string) when base is a | Tim Peters | 2003-02-02 | 1 | -10/+1 |
|
|
* | cPickle.c: Full support for the new LONG1 and LONG4. Added comments. | Tim Peters | 2003-02-02 | 1 | -11/+49 |
|
|
* | Removed all uses of the out-of-favor __safe_for_unpickling__ magic | Tim Peters | 2003-02-01 | 1 | -2/+0 |
|
|
* | Implement appropriate __getnewargs__ for all immutable subclassable builtin | Guido van Rossum | 2003-01-29 | 1 | -2/+44 |
|
|
* | Test all three EXT opcodes, and move these tests into | Guido van Rossum | 2003-01-29 | 1 | -0/+61 |
|
|
* | Temporary hacks to arrange that the pickle tests relying on protocol 2 | Tim Peters | 2003-01-28 | 1 | -0/+6 |
|
|
* | Add a test for a list subclass with a __dict__ as well as slots. | Guido van Rossum | 2003-01-28 | 1 | -0/+17 |
|
|
* | The default __reduce__ on the base object type obscured any | Guido van Rossum | 2003-01-28 | 1 | -23/+14 |
|
|
* | Some experimental support for generating NEWOBJ with proto=2, and | Guido van Rossum | 2003-01-28 | 1 | -0/+39 |
|
|
* | OK, this is really the last one tonight! | Guido van Rossum | 2003-01-28 | 1 | -0/+7 |
|
|
* | Shouldn't test short tuples with all items equal -- one potential bug | Guido van Rossum | 2003-01-28 | 1 | -4/+4 |
|
|
* | More protocol 2: TUPLE1, TUPLE2, TUPLE3. | Guido van Rossum | 2003-01-28 | 1 | -0/+12 |
|
|
* | First baby steps towards implementing protocol 2: PROTO, LONG1 and LONG4. | Guido van Rossum | 2003-01-28 | 1 | -0/+14 |
|
|
* | Add some simple tests of the persistence hooks. | Jeremy Hylton | 2002-11-13 | 1 | -0/+35 |
|
|
* | Check for trailing backslash. Fixes #593656. | Martin v. Löwis | 2002-08-14 | 1 | -0/+1 |
|
|
* | Patch #505705: Remove eval in pickle and cPickle. | Martin v. Löwis | 2002-08-14 | 1 | -3/+3 |
|
|
* | Massive changes from SF 589982 (tempfile.py rewrite, by Zack | Guido van Rossum | 2002-08-09 | 1 | -13/+15 |
|
|
* | Complete the absolute import patch for the test suite. All relative | Barry Warsaw | 2002-07-30 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-04-16 | 1 | -1/+1 |
|
|