summaryrefslogtreecommitdiffstats
path: root/Modules/cPickle.c
Commit message (Expand)AuthorAgeFilesLines
...
* cPickle can load pickles using proto 2 EXT[124] now, but can't yetTim Peters2003-02-041-0/+108
* Rename the extension registry variables to have leading underscores --Guido van Rossum2003-02-041-6/+6
* Typo repair.Tim Peters2003-02-041-1/+1
* Brought some module variables into synch with pickle.py's current values.Tim Peters2003-02-041-16/+47
* load_counted_long(): Changed a ValueError to an UnpicklingError, justTim Peters2003-02-031-15/+1
* PDATA_PUSH and PDATA_APPEND. documented, and reformatted for betterTim Peters2003-02-031-30/+38
* cPickle support for TUPLE[123]. Incidentally plugged several undetectedTim Peters2003-02-021-84/+210
* Massive edits. If p is a pointer to a struct, and p->f is a pointer toTim Peters2003-02-021-89/+93
* Minor cleanup, mostly adding horizontal whitespace, and breaking apartTim Peters2003-02-021-31/+30
* Implemented proto 2 NEWTRUE and NEWFALSE in cPickle.Tim Peters2003-02-021-2/+34
* Beefed up the tests by putting in more "for proto in protocols:" outerTim Peters2003-02-021-0/+5
* Fix compiler warningNeal Norwitz2003-02-021-1/+1
* dump(): Added asserts that self->proto is sane.Tim Peters2003-02-021-1/+2
* 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