| Commit message (Expand) | Author | Age | Files | Lines |
* | Ack -- this module mixes tabs and spaces, and what appears to be a mix | Tim Peters | 2001-04-10 | 1 | -5/+5 |
|
|
* | On a sizeof(long)==8 machine, ints in range(2**31, 2**32) were getting | Tim Peters | 2001-04-10 | 1 | -5/+21 |
|
|
* | Critical fix: if cPickle on a sizeof(long)==8 box is used to read a | Tim Peters | 2001-04-10 | 1 | -1/+8 |
|
|
* | Make cPickle use the recently-added PyInstance_NewRaw() API to create | Fred Drake | 2001-03-22 | 1 | -11/+3 |
|
|
* | SF bug [ #233200 ] cPickle does not use Py_BEGIN_ALLOW_THREADS. | Tim Peters | 2001-03-17 | 1 | -173/+182 |
|
|
* | Minimal fix for the complaints about pickling Unicode objects. (SF | Guido van Rossum | 2000-12-19 | 1 | -2/+48 |
|
|
* | - Fix a GC bug caused by PyDict_New() failing. | Neil Schemenauer | 2000-10-04 | 1 | -1/+2 |
|
|
* | Oops. Jim's fix didn't. This one does -- I tested it a bit better | Guido van Rossum | 2000-09-07 | 1 | -4/+19 |
|
|
* | Simple fix from Jin Fulton to avoid returning a half-initialized | Guido van Rossum | 2000-09-07 | 1 | -2/+2 |
|
|
* | Use safer comparisons (only matters when sizeof(int) != sizeof(size_t)). fread | Trent Mick | 2000-08-12 | 1 | -2/+2 |
|
|
* | merge Include/my*.h into Include/pyport.h | Peter Schneider-Kamp | 2000-07-31 | 1 | -1/+0 |
|
|
* | ANSIfy some more forward declarations. | Thomas Wouters | 2000-07-24 | 1 | -4/+4 |
|
|
* | ... and yet more ANSIfications... | Thomas Wouters | 2000-07-24 | 1 | -3/+4 |
|
|
* | ANSIfication: add proper prototypes to function-pointers and declarations. | Thomas Wouters | 2000-07-22 | 1 | -24/+13 |
|
|
* | replace PyXXX_Length calls with PyXXX_Size calls | Jeremy Hylton | 2000-07-12 | 1 | -2/+2 |
|
|
* | final patches from Neil Schemenauer for garbage collection | Jeremy Hylton | 2000-06-30 | 1 | -1/+1 |
|
|
* | Trent Mick: | Guido van Rossum | 2000-06-28 | 1 | -8/+7 |
|
|
* | New version from Jim Fulton to fix a problem that Eric Raymond ran | Guido van Rossum | 2000-05-09 | 1 | -6/+20 |
|
|
* | Vladimir Marangozov's long-awaited malloc restructuring. | Guido van Rossum | 2000-05-03 | 1 | -7/+7 |
|
|
* | Charles Waldman writes: | Guido van Rossum | 2000-04-21 | 1 | -14/+11 |
|
|
* | Marc-Andre Lemburg: support pickling Unicode objects, both in text | Guido van Rossum | 2000-03-10 | 1 | -0/+149 |
|
|
* | Massive patch by Skip Montanaro to add ":name" to as many | Guido van Rossum | 2000-02-29 | 1 | -11/+11 |
|
|
* | Patch by Stephen Turner, who writes: | Guido van Rossum | 1999-07-13 | 1 | -18/+27 |
|
|
* | New version from Jim: | Guido van Rossum | 1999-06-15 | 1 | -50/+30 |
|
|
* | Jim Fulton writes: | Guido van Rossum | 1999-06-09 | 1 | -10/+56 |
|
|
* | Jim Fulton writes: | Guido van Rossum | 1999-04-19 | 1 | -13/+41 |
|
|
* | Fix accidentally reversed NULL test in load_mark(). Suggested by | Guido van Rossum | 1999-04-12 | 1 | -1/+1 |
|
|
* | Protection against picling to/from closed (real) file. | Guido van Rossum | 1999-03-29 | 1 | -0/+8 |
|
|
* | Fix buglet in load_put -- the test for bad readline result tested the | Guido van Rossum | 1999-02-08 | 1 | -1/+1 |
|
|
* | Jim Fulton: this fixes seg faults with bad pickles like "c". | Guido van Rossum | 1999-02-04 | 1 | -3/+22 |
|
|
* | Make sure not to call realloc() with a NULL pointer -- call malloc() | Guido van Rossum | 1999-01-25 | 1 | -1/+4 |
|
|
* | Need to initialize self->safe_constructors early on to prevent crash | Guido van Rossum | 1998-12-11 | 1 | -0/+1 |
|
|
* | Make VC++ 5.0 compiler happy. | Guido van Rossum | 1998-12-08 | 1 | -12/+8 |
|
|
* | Fix two small bugs; add DL_EXPORT() to initcPickle decl. | Guido van Rossum | 1998-12-04 | 1 | -2/+3 |
|
|
* | New version from Jim Fulton: | Guido van Rossum | 1998-11-25 | 1 | -1172/+1110 |
|
|
* | Enter Jim Fulton's latest version. He writes: | Jeremy Hylton | 1998-08-13 | 1 | -20/+80 |
|
|
* | Two fixes to find_class: | Jeremy Hylton | 1998-08-11 | 1 | -9/+22 |
|
|
* | Jim Fulton's patches to get rid of the class_map(). | Guido van Rossum | 1998-08-08 | 1 | -73/+27 |
|
|
* | Use PyErr_ExceptionMatches(...) instead of PyErr_Occurred() == ... in two | Fred Drake | 1998-05-28 | 1 | -2/+4 |
|
|
* | whichmodule(): remove redundant PyErr_Clear(); add explicit setting | Guido van Rossum | 1998-05-14 | 1 | -4/+3 |
|
|
* | Use %.17f to format floats/doubles | Guido van Rossum | 1998-04-03 | 1 | -1/+1 |
|
|
* | Clear class_map in constructor so that when it later detects an error | Guido van Rossum | 1998-03-06 | 1 | -1/+2 |
|
|
* | Renamed Jim's PyErr_[JF]Format() to cPickle_ErrFormat(). It's not a | Guido van Rossum | 1998-01-19 | 1 | -11/+10 |
|
|
* | Jim Fulton: | Guido van Rossum | 1997-12-08 | 1 | -24/+50 |
|
|
* | New versions of cPickle and cStringIO, from Jim Fulton's cPickle 1.0b1 | Guido van Rossum | 1997-12-04 | 1 | -246/+633 |
|
|
* | Initialize __version__ to the correct version string regardless of | Guido van Rossum | 1997-12-01 | 1 | -3/+14 |
|
|
* | In whichmodule(), use __module__ if set. | Guido van Rossum | 1997-09-28 | 1 | -0/+4 |
|
|
* | #Plug small memory leaks in constructors. | Guido van Rossum | 1997-09-03 | 1 | -2/+5 |
|
|
* | Removed JF's dollar-Log-dollar RCS turd that caused compilation to | Barry Warsaw | 1997-08-21 | 1 | -52/+0 |
|
|
* | Added /**/ around #end tags | Guido van Rossum | 1997-08-21 | 1 | -1/+4 |
|
|