summaryrefslogtreecommitdiffstats
path: root/Modules/cPickle.c
Commit message (Expand)AuthorAgeFilesLines
...
* dump(): Fixed a stupid bug in new code. It wasn't possible for the bugTim Peters2003-02-021-1/+1
* Add cPickle support for PROTO. Duplicated PROTO/LONG1/LONG4 code inTim Peters2003-02-021-2/+56
* cPickle.c: Full support for the new LONG1 and LONG4. Added comments.Tim Peters2003-02-021-21/+161
* The C pickle now knows how to deal with a proto= argument. AssortedTim Peters2003-02-011-45/+86
* Removed needless include of errno.h.Tim Peters2003-02-011-4/+0
* The module docstring had an RCS ID from 1999 embedded in it. EnoughTim Peters2003-02-011-3/+1
* Trimmed trailing whitespace.Tim Peters2003-02-011-223/+223
* Added #defines for proto 2 opcodes; gave the Pickler a proto member;Tim Peters2003-02-011-16/+30
* Removed all uses of the out-of-favor __safe_for_unpickling__ magicTim Peters2003-02-011-46/+5
* Ignore the state returned by __reduce__ if it is Py_None.Guido van Rossum2003-01-311-0/+2
* Patch #661760: Cygwin auto-import module patchJason Tishler2003-01-061-4/+2
* Add an XXX comment about relative imports.Guido van Rossum2002-12-241-1/+2
* A patch from Kevin Jacobs, plugging several leaks discovered whenTim Peters2002-12-071-5/+10
* Make BadPickleGet a class. Fixes #609164.Martin v. Löwis2002-09-161-3/+4
* Patch #505705: Remove eval in pickle and cPickle.Martin v. Löwis2002-08-141-31/+20
* Allow more docstrings to be removed during compilation in some modulesNeal Norwitz2002-08-131-15/+16
* Add recursion counter for pickling. Fixes #576084.Martin v. Löwis2002-08-041-0/+9
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-3/+3
* Fix indentation.Jeremy Hylton2002-07-181-5/+5
* staticforward bites the dust.Jeremy Hylton2002-07-171-2/+2
* Given the persistent id code a shot at a class before calling save_global().Jeremy Hylton2002-07-161-5/+5
* remove decl of unused variableJeremy Hylton2002-07-111-1/+1
* Do more robust test of whether global objects are accessible.Jeremy Hylton2002-07-111-4/+3
* Undefine TRUE and FALSE before redefining them.Jack Jansen2002-06-261-0/+2
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-10/+9
* Pickler_clear_memo(): convert to METH_NOARGS.Fred Drake2002-05-011-5/+2
* Repair widespread misuse of _PyString_Resize. Since it's clear peopleTim Peters2002-04-271-7/+1
* #546156, Remove load_false()/load_true(), they are not usedNeal Norwitz2002-04-211-14/+0
* Implement an idea by Paul Rubin:Guido van Rossum2002-04-051-15/+11
* Removed old Digital Creations copyright/license notices (withGuido van Rossum2002-04-041-48/+0
* Add the 'bool' type and its values 'False' and 'True', as described inGuido van Rossum2002-04-031-0/+44
* Reindent. Break long lines. Move comments before the statements.Martin v. Löwis2002-04-011-3482/+3641
* Remove UNLESS.Martin v. Löwis2002-04-011-152/+152
* Use symbolic METH_VARARGS/METH_OLDARGS instead of 1/0 for ml_flagsNeal Norwitz2002-03-311-11/+11
* Match behavior of the pickle.py module more closely.Neil Schemenauer2002-03-221-0/+5
* Merge of the release22 branch changes back into the trunk.Barry Warsaw2001-12-211-3/+5
* save(): Fix for SF bug #494904: Cannot pickle a class with aGuido van Rossum2001-12-191-0/+5
* Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum2001-12-081-3/+3
* Use PyOS_snprintf() instead of sprintf().Jeremy Hylton2001-11-281-4/+4
* A change to sync with pickle.py:Barry Warsaw2001-11-151-8/+0
* load_string(): Force use of unsigned compare in a context that wasTim Peters2001-11-121-6/+8
* Fixes to compile cPickle.c & socketmodule.c on cygwin and possiblyMichael W. Hudson2001-11-091-2/+4
* Must terminate the Pickler_members[] and Pickler_getsets with NULL.Jeremy Hylton2001-10-161-1/+3
* Better fix for core dumps on recursive objects in fast mode.Jeremy Hylton2001-10-151-32/+64
* Progress on SF bug #466175 and general cleanup.Jeremy Hylton2001-10-121-187/+197
* load_int: The fallback to long ints was coded in such a way that itTim Peters2001-08-281-4/+3
* SF patch #452239 by Gordon McMillan, to fix SF bug #451547.Guido van Rossum2001-08-181-1/+25
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-0/+14
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-0/+4
* Remove code to initialize globals that are never used.Fred Drake2001-07-171-22/+11