summaryrefslogtreecommitdiffstats
path: root/Modules/cPickle.c
Commit message (Expand)AuthorAgeFilesLines
* Getting rid of cPickle. Mmm, feels good!Guido van Rossum2007-07-201-5548/+0
* Change Py_BuildValue to generate Unicode objects forMartin v. Löwis2007-07-181-6/+103
* Fix the code for stripping the leading 's' from str8 and bytes literals.Guido van Rossum2007-07-031-1/+3
* Make pickle errror message unicode objects.Walter Dörwald2007-06-201-2/+2
* Fix some problems introduced by the str8 repr change.Guido van Rossum2007-06-151-0/+4
* Rip out the file object's implementation.Guido van Rossum2007-06-121-132/+2
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-6/+6
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-2/+2
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-151-1/+1
* Merged revisions 55270-55324 via svnmerge fromGuido van Rossum2007-05-141-15/+2
* Got test_pickletools and test_pickle working.Guido van Rossum2007-05-081-0/+7
* Checkpoint. A b it closer to working pickles and pickletools.Guido van Rossum2007-05-071-4/+8
* Fix some trivial things in cPickle due to the renaming of the string types.Guido van Rossum2007-05-071-7/+2
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-14/+0
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-7/+12
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-2/+6
* Fix cPickle breakage due to last-minute change to the name of the 'long' typeGuido van Rossum2007-01-141-1/+1
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-17/+25
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-4/+8
* Fixed cPickle, by restoring some of the deleted code.Guido van Rossum2006-08-171-3/+40
* Completely get rid of PyClass and PyInstance.Guido van Rossum2006-08-171-217/+2
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-9/+18
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-22/+9
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-5/+5
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-57/+35
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-3/+3
* Merge ssize_t branch.Martin v. Löwis2006-02-151-26/+36
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-10/+10
* Eliminate the deprecated option to return None instead of a tuple of argument...Raymond Hettinger2004-12-071-11/+6
* Patch #995766: Keyword argument support in cPickle.Martin v. Löwis2004-07-271-15/+21
* Patch #774665: Make Python LC_NUMERIC agnostic.Martin v. Löwis2004-06-081-1/+1
* made cPickle fall back to the copy_reg/reduce protocol,Christian Tismer2004-02-261-0/+5
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-1/+1
* The Unpickler forget about its find_class attribute.Jeremy Hylton2003-07-111-0/+3
* Remove many blanket try/except clauses.Jeremy Hylton2003-06-161-11/+40
* PyType_Ready(): Complain if the type is a base type, and gc'able, andTim Peters2003-05-211-2/+7
* Make Unpickler objects colletable.Jeremy Hylton2003-04-091-23/+65
* Make Picklers collectable.Jeremy Hylton2003-04-091-5/+45
* New private API functions _PyFloat_{Pack,Unpack}(4,8}. This is aTim Peters2003-03-201-154/+9
* SF bug 705836: struct.pack of floats in non-native endian orderTim Peters2003-03-201-6/+24
* Use __reduce_ex__.Guido van Rossum2003-02-191-45/+36
* save_global(): Trying to resolve module.name can fail for twoTim Peters2003-02-181-3/+5
* Make 2 module variables static. Assuming this is correct.Neal Norwitz2003-02-151-2/+2
* cPickle.c, load_build(): Taught cPickle how to pick apartTim Peters2003-02-151-21/+71
* cPickle produces NEWOBJ appropriately now. It still doesn't knowTim Peters2003-02-141-69/+195
* Minor assorted cleanups; no semantic changes.Tim Peters2003-02-131-10/+16
* The version of PyImport_Import() in cPickle is no longer needed (an editedTim Peters2003-02-131-64/+0
* save(): Reformat tail end just for clarity.Tim Peters2003-02-131-16/+17
* Taught cPickle how to read pickles containing NEWOBJ. This won't getTim Peters2003-02-131-1/+75