summaryrefslogtreecommitdiff
path: root/Lib/pickle.py
Commit message (Expand)AuthorAgeFilesLines
...
* | Remove redundant imports.Florent Xicluna2011-11-041-1/+1
* | Merge 3.2Florent Xicluna2011-10-281-1/+1
|\ \ | |/
| * Closes #13258: Use callable() built-in in the standard library.Florent Xicluna2011-10-281-1/+1
* | Issue #7689: Allow pickling of dynamically created classes when theirAntoine Pitrou2011-10-041-9/+9
|\ \ | |/
| * Issue #7689: Allow pickling of dynamically created classes when theirAntoine Pitrou2011-10-041-9/+9
* | Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments inAntoine Pitrou2011-08-301-0/+6
|\ \ | |/
| * Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments inAntoine Pitrou2011-08-301-0/+6
* | remove __version__s dependent on subversion keyword expansion (closes #12221)Benjamin Peterson2011-05-311-2/+0
|/
* Issue #9410: Various optimizations to the pickle module, leading toAntoine Pitrou2010-09-091-6/+6
* Issue #9378: python -m pickle <pickle file> will now load and displayAlexander Belopolsky2010-07-271-1/+23
* Issue #5180: Fixed a bug that prevented loading 2.x pickles in 3.xAlexander Belopolsky2010-07-171-16/+5
* Issue #8383: pickle and pickletools use surrogatepass error handler whenVictor Stinner2010-04-131-2/+2
* Simplified long coding in pickle.py.Alexandre Vassalotti2010-01-121-51/+7
* Issue #6137: The pickle module now translates module names when loadingAntoine Pitrou2009-06-041-16/+40
* Only try to intern str objects when unpickling attributes.Alexandre Vassalotti2009-05-251-8/+6
* Merged revisions 72223 via svnmerge fromAntoine Pitrou2009-05-021-1/+9
* Issue #4842, patch 1/2: fix pickle in Python 3.x so that pickling with theMark Dickinson2009-01-201-1/+3
* fix typo #4904Benjamin Peterson2009-01-101-1/+1
* Fix issue #4374: Pickle tests fail w/o _pickle extension.Alexandre Vassalotti2008-12-271-0/+10
* Sorry, r67092 is commit miss....Hirokazu Yamamoto2008-11-041-13/+0
* Blocked revisions 67002 via svnmergeHirokazu Yamamoto2008-11-041-0/+13
* Remove a confusing statement in Pickler's docstring.Alexandre Vassalotti2008-10-251-2/+0
* Restore _pickle module accelerator module.Alexandre Vassalotti2008-06-121-83/+71
* revert the addition of _pickle because it was causing havok with 64-bitBenjamin Peterson2008-06-121-71/+83
* Removed exception renaming cruft in pickle.py.Alexandre Vassalotti2008-06-111-3/+0
* Issue 2917: Merge the pickle and cPickle module.Alexandre Vassalotti2008-06-111-83/+74
* Change Pickler._batch_appends() and Pickler._batch_setitems() to takeAlexandre Vassalotti2008-05-141-2/+4
* Rename copy_reg module to copyreg.Alexandre Vassalotti2008-05-111-4/+4
* Removed memoryview objects from bytes_types.Alexandre Vassalotti2008-05-031-1/+1
* - A new pickle protocol (protocol 3) is added with explicit supportGuido van Rossum2008-03-171-19/+45
* Rename buffer -> bytearray.Guido van Rossum2007-11-211-1/+1
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-14/+18
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-1/+1
* Random changes having to do with readline() and bytes.Guido van Rossum2007-10-101-25/+14
* More str/bytes fixes.Guido van Rossum2007-08-271-6/+6
* Changes in anticipation of stricter str vs. bytes enforcement.Guido van Rossum2007-08-271-8/+9
* Getting rid of cPickle. Mmm, feels good!Guido van Rossum2007-07-201-6/+7
* Fix test_pickle, by reverting the string opcodes (S, T, U) to returningGuido van Rossum2007-07-191-17/+3
* Change Py_BuildValue to generate Unicode objects forMartin v. Löwis2007-07-181-3/+17
* Fix some problems introduced by the str8 repr change.Guido van Rossum2007-06-151-1/+2
* Rip out all codecs that can't work in a unicode/bytes world:Walter Dörwald2007-06-121-1/+2
* Merged revisions 55795-55816 via svnmerge fromGuido van Rossum2007-06-071-15/+14
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-1/+1
* Merged revisions 55270-55324 via svnmerge fromGuido van Rossum2007-05-141-22/+4
* Got test_pickletools and test_pickle working.Guido van Rossum2007-05-081-25/+30
* Got test_exceptions.py working.Guido van Rossum2007-05-081-3/+3
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-2/+2
* Much more pickling now works.Guido van Rossum2007-05-041-4/+7
* Checkpoint. Make pickle.py read/write bytes.Guido van Rossum2007-05-041-209/+185
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-021-7/+7