summaryrefslogtreecommitdiffstats
path: root/Modules/cPickle.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Ack -- this module mixes tabs and spaces, and what appears to be a mixTim Peters2001-04-101-5/+5
* On a sizeof(long)==8 machine, ints in range(2**31, 2**32) were gettingTim Peters2001-04-101-5/+21
* Critical fix: if cPickle on a sizeof(long)==8 box is used to read aTim Peters2001-04-101-1/+8
* Make cPickle use the recently-added PyInstance_NewRaw() API to createFred Drake2001-03-221-11/+3
* SF bug [ #233200 ] cPickle does not use Py_BEGIN_ALLOW_THREADS.Tim Peters2001-03-171-173/+182
* Minimal fix for the complaints about pickling Unicode objects. (SFGuido van Rossum2000-12-191-2/+48
* - Fix a GC bug caused by PyDict_New() failing.Neil Schemenauer2000-10-041-1/+2
* Oops. Jim's fix didn't. This one does -- I tested it a bit betterGuido van Rossum2000-09-071-4/+19
* Simple fix from Jin Fulton to avoid returning a half-initializedGuido van Rossum2000-09-071-2/+2
* Use safer comparisons (only matters when sizeof(int) != sizeof(size_t)). freadTrent Mick2000-08-121-2/+2
* merge Include/my*.h into Include/pyport.hPeter Schneider-Kamp2000-07-311-1/+0
* ANSIfy some more forward declarations.Thomas Wouters2000-07-241-4/+4