summaryrefslogtreecommitdiffstats
path: root/Modules/cPickle.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* ... and yet more ANSIfications...Thomas Wouters2000-07-241-3/+4
* ANSIfication: add proper prototypes to function-pointers and declarations.Thomas Wouters2000-07-221-24/+13
* replace PyXXX_Length calls with PyXXX_Size callsJeremy Hylton2000-07-121-2/+2
* final patches from Neil Schemenauer for garbage collectionJeremy Hylton2000-06-301-1/+1
* Trent Mick:Guido van Rossum2000-06-281-8/+7
* New version from Jim Fulton to fix a problem that Eric Raymond ranGuido van Rossum2000-05-091-6/+20
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-7/+7
* Charles Waldman writes:Guido van Rossum2000-04-211-14/+11
* Marc-Andre Lemburg: support pickling Unicode objects, both in textGuido van Rossum2000-03-101-0/+149
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-291-11/+11
* Patch by Stephen Turner, who writes:Guido van Rossum1999-07-131-18/+27
* New version from Jim:Guido van Rossum1999-06-151-50/+30
* Jim Fulton writes:Guido van Rossum1999-06-091-10/+56