| Commit message (Expand) | Author | Age | Files | Lines |
* | Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype | Mark Hammond | 2002-08-02 | 1 | -3/+3 |
|
|
* | Fix indentation. | Jeremy Hylton | 2002-07-18 | 1 | -5/+5 |
|
|
* | staticforward bites the dust. | Jeremy Hylton | 2002-07-17 | 1 | -2/+2 |
|
|
* | Given the persistent id code a shot at a class before calling save_global(). | Jeremy Hylton | 2002-07-16 | 1 | -5/+5 |
|
|
* | remove decl of unused variable | Jeremy Hylton | 2002-07-11 | 1 | -1/+1 |
|
|
* | Do more robust test of whether global objects are accessible. | Jeremy Hylton | 2002-07-11 | 1 | -4/+3 |
|
|
* | Undefine TRUE and FALSE before redefining them. | Jack Jansen | 2002-06-26 | 1 | -0/+2 |
|
|
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -10/+9 |
|
|
* | Pickler_clear_memo(): convert to METH_NOARGS. | Fred Drake | 2002-05-01 | 1 | -5/+2 |
|
|
* | Repair widespread misuse of _PyString_Resize. Since it's clear people | Tim Peters | 2002-04-27 | 1 | -7/+1 |
|
|
* | #546156, Remove load_false()/load_true(), they are not used | Neal Norwitz | 2002-04-21 | 1 | -14/+0 |
|
|
* | Implement an idea by Paul Rubin: | Guido van Rossum | 2002-04-05 | 1 | -15/+11 |
|
|
* | Removed old Digital Creations copyright/license notices (with | Guido van Rossum | 2002-04-04 | 1 | -48/+0 |
|
|
* | Add the 'bool' type and its values 'False' and 'True', as described in | Guido van Rossum | 2002-04-03 | 1 | -0/+44 |
|
|
* | Reindent. Break long lines. Move comments before the statements. | Martin v. Löwis | 2002-04-01 | 1 | -3482/+3641 |
|
|
* | Remove UNLESS. | Martin v. Löwis | 2002-04-01 | 1 | -152/+152 |
|
|
* | Use symbolic METH_VARARGS/METH_OLDARGS instead of 1/0 for ml_flags | Neal Norwitz | 2002-03-31 | 1 | -11/+11 |
|
|
* | Match behavior of the pickle.py module more closely. | Neil Schemenauer | 2002-03-22 | 1 | -0/+5 |
|
|
* | Merge of the release22 branch changes back into the trunk. | Barry Warsaw | 2001-12-21 | 1 | -3/+5 |
|
|
* | save(): Fix for SF bug #494904: Cannot pickle a class with a | Guido van Rossum | 2001-12-19 | 1 | -0/+5 |
|
|
* | Patch supplied by Burton Radons for his own SF bug #487390: Modifying | Guido van Rossum | 2001-12-08 | 1 | -3/+3 |
|
|
* | Use PyOS_snprintf() instead of sprintf(). | Jeremy Hylton | 2001-11-28 | 1 | -4/+4 |
|
|
* | A change to sync with pickle.py: | Barry Warsaw | 2001-11-15 | 1 | -8/+0 |
|
|
* | load_string(): Force use of unsigned compare in a context that was | Tim Peters | 2001-11-12 | 1 | -6/+8 |
|
|
* | Fixes to compile cPickle.c & socketmodule.c on cygwin and possibly | Michael W. Hudson | 2001-11-09 | 1 | -2/+4 |
|
|
* | Must terminate the Pickler_members[] and Pickler_getsets with NULL. | Jeremy Hylton | 2001-10-16 | 1 | -1/+3 |
|
|
* | Better fix for core dumps on recursive objects in fast mode. | Jeremy Hylton | 2001-10-15 | 1 | -32/+64 |
|
|
* | Progress on SF bug #466175 and general cleanup. | Jeremy Hylton | 2001-10-12 | 1 | -187/+197 |
|
|
* | load_int: The fallback to long ints was coded in such a way that it | Tim Peters | 2001-08-28 | 1 | -4/+3 |
|
|
* | SF patch #452239 by Gordon McMillan, to fix SF bug #451547. | Guido van Rossum | 2001-08-18 | 1 | -1/+25 |
|
|
* | Patch #445762: Support --disable-unicode | Martin v. Löwis | 2001-08-17 | 1 | -0/+14 |
|
|
* | Merge of descr-branch back into trunk. | Tim Peters | 2001-08-02 | 1 | -0/+4 |
|
|
* | Remove code to initialize globals that are never used. | Fred Drake | 2001-07-17 | 1 | -22/+11 |
|
|
* | 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 |
|
|