summaryrefslogtreecommitdiff
path: root/Modules/cPickle.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Jim Fulton writes:Guido van Rossum1999-04-191-13/+41
* Fix accidentally reversed NULL test in load_mark(). Suggested byGuido van Rossum1999-04-121-1/+1
* Protection against picling to/from closed (real) file.Guido van Rossum1999-03-291-0/+8
* Fix buglet in load_put -- the test for bad readline result tested theGuido van Rossum1999-02-081-1/+1
* Jim Fulton: this fixes seg faults with bad pickles like "c".Guido van Rossum1999-02-041-3/+22
* Make sure not to call realloc() with a NULL pointer -- call malloc()Guido van Rossum1999-01-251-1/+4
* Need to initialize self->safe_constructors early on to prevent crashGuido van Rossum1998-12-111-0/+1
* Make VC++ 5.0 compiler happy.Guido van Rossum1998-12-081-12/+8
* Fix two small bugs; add DL_EXPORT() to initcPickle decl.Guido van Rossum1998-12-041-2/+3
* New version from Jim Fulton:Guido van Rossum1998-11-251-1172/+1110
* Enter Jim Fulton's latest version. He writes:Jeremy Hylton1998-08-131-20/+80
* Two fixes to find_class:Jeremy Hylton1998-08-111-9/+22
* Jim Fulton's patches to get rid of the class_map().Guido van Rossum1998-08-081-73/+27
* Use PyErr_ExceptionMatches(...) instead of PyErr_Occurred() == ... in twoFred Drake1998-05-281-2/+4
* whichmodule(): remove redundant PyErr_Clear(); add explicit settingGuido van Rossum1998-05-141-4/+3
* Use %.17f to format floats/doublesGuido van Rossum1998-04-031-1/+1
* Clear class_map in constructor so that when it later detects an errorGuido van Rossum1998-03-061-1/+2
* Renamed Jim's PyErr_[JF]Format() to cPickle_ErrFormat(). It's not aGuido van Rossum1998-01-191-11/+10
* Jim Fulton:Guido van Rossum1997-12-081-24/+50
* New versions of cPickle and cStringIO, from Jim Fulton's cPickle 1.0b1Guido van Rossum1997-12-041-246/+633