| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #9410: Various optimizations to the pickle module, leading to | Antoine Pitrou | 2010-09-09 | 1 | -6/+6 |
|
|
* | Issue #9378: python -m pickle <pickle file> will now load and display | Alexander Belopolsky | 2010-07-27 | 1 | -1/+23 |
|
|
* | Issue #5180: Fixed a bug that prevented loading 2.x pickles in 3.x | Alexander Belopolsky | 2010-07-17 | 1 | -16/+5 |
|
|
* | Issue #8383: pickle and pickletools use surrogatepass error handler when | Victor Stinner | 2010-04-13 | 1 | -2/+2 |
|
|
* | Simplified long coding in pickle.py. | Alexandre Vassalotti | 2010-01-12 | 1 | -51/+7 |
|
|
* | Issue #6137: The pickle module now translates module names when loading | Antoine Pitrou | 2009-06-04 | 1 | -16/+40 |
|
|
* | Only try to intern str objects when unpickling attributes. | Alexandre Vassalotti | 2009-05-25 | 1 | -8/+6 |
|
|
* | Merged revisions 72223 via svnmerge from | Antoine Pitrou | 2009-05-02 | 1 | -1/+9 |
|
|
* | Issue #4842, patch 1/2: fix pickle in Python 3.x so that pickling with the | Mark Dickinson | 2009-01-20 | 1 | -1/+3 |
|
|
* | fix typo #4904 | Benjamin Peterson | 2009-01-10 | 1 | -1/+1 |
|
|
* | Fix issue #4374: Pickle tests fail w/o _pickle extension. | Alexandre Vassalotti | 2008-12-27 | 1 | -0/+10 |
|
|
* | Sorry, r67092 is commit miss.... | Hirokazu Yamamoto | 2008-11-04 | 1 | -13/+0 |
|
|
* | Blocked revisions 67002 via svnmerge | Hirokazu Yamamoto | 2008-11-04 | 1 | -0/+13 |
|
|
* | Remove a confusing statement in Pickler's docstring. | Alexandre Vassalotti | 2008-10-25 | 1 | -2/+0 |
|
|
* | Restore _pickle module accelerator module. | Alexandre Vassalotti | 2008-06-12 | 1 | -83/+71 |
|
|
* | revert the addition of _pickle because it was causing havok with 64-bit | Benjamin Peterson | 2008-06-12 | 1 | -71/+83 |
|
|
* | Removed exception renaming cruft in pickle.py. | Alexandre Vassalotti | 2008-06-11 | 1 | -3/+0 |
|
|
* | Issue 2917: Merge the pickle and cPickle module. | Alexandre Vassalotti | 2008-06-11 | 1 | -83/+74 |
|
|
* | Change Pickler._batch_appends() and Pickler._batch_setitems() to take | Alexandre Vassalotti | 2008-05-14 | 1 | -2/+4 |
|
|
* | Rename copy_reg module to copyreg. | Alexandre Vassalotti | 2008-05-11 | 1 | -4/+4 |
|
|
* | Removed memoryview objects from bytes_types. | Alexandre Vassalotti | 2008-05-03 | 1 | -1/+1 |
|
|
* | - A new pickle protocol (protocol 3) is added with explicit support | Guido van Rossum | 2008-03-17 | 1 | -19/+45 |
|
|
* | Rename buffer -> bytearray. | Guido van Rossum | 2007-11-21 | 1 | -1/+1 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -14/+18 |
|
|
* | Patch# 1258 by Christian Heimes: kill basestring. | Guido van Rossum | 2007-10-16 | 1 | -1/+1 |
|
|
* | Random changes having to do with readline() and bytes. | Guido van Rossum | 2007-10-10 | 1 | -25/+14 |
|
|
* | More str/bytes fixes. | Guido van Rossum | 2007-08-27 | 1 | -6/+6 |
|
|
* | Changes in anticipation of stricter str vs. bytes enforcement. | Guido van Rossum | 2007-08-27 | 1 | -8/+9 |
|
|
* | Getting rid of cPickle. Mmm, feels good! | Guido van Rossum | 2007-07-20 | 1 | -6/+7 |
|
|
* | Fix test_pickle, by reverting the string opcodes (S, T, U) to returning | Guido van Rossum | 2007-07-19 | 1 | -17/+3 |
|
|
* | Change Py_BuildValue to generate Unicode objects for | Martin v. Löwis | 2007-07-18 | 1 | -3/+17 |
|
|
* | Fix some problems introduced by the str8 repr change. | Guido van Rossum | 2007-06-15 | 1 | -1/+2 |
|
|
* | Rip out all codecs that can't work in a unicode/bytes world: | Walter Dörwald | 2007-06-12 | 1 | -1/+2 |
|
|
* | Merged revisions 55795-55816 via svnmerge from | Guido van Rossum | 2007-06-07 | 1 | -15/+14 |
|
|
* | Merged revisions 55407-55513 via svnmerge from | Guido van Rossum | 2007-05-22 | 1 | -1/+1 |
|
|
* | Merged revisions 55270-55324 via svnmerge from | Guido van Rossum | 2007-05-14 | 1 | -22/+4 |
|
|
* | Got test_pickletools and test_pickle working. | Guido van Rossum | 2007-05-08 | 1 | -25/+30 |
|
|
* | Got test_exceptions.py working. | Guido van Rossum | 2007-05-08 | 1 | -3/+3 |
|
|
* | Merged revisions 55007-55179 via svnmerge from | Guido van Rossum | 2007-05-07 | 1 | -2/+2 |
|
|
* | Much more pickling now works. | Guido van Rossum | 2007-05-04 | 1 | -4/+7 |
|
|
* | Checkpoint. Make pickle.py read/write bytes. | Guido van Rossum | 2007-05-04 | 1 | -209/+185 |
|
|
* | Rip out all the u"..." literals and calls to unicode(). | Guido van Rossum | 2007-05-02 | 1 | -7/+7 |
|
|
* | PEP 3114: rename .next() to .__next__() and add next() builtin. | Georg Brandl | 2007-04-21 | 1 | -2/+2 |
|
|
* | Hide list comp variables and support set comprehensions | Nick Coghlan | 2007-04-15 | 1 | -1/+0 |
|
|
* | Fix a bizarre error where test_pickletools fails if preceded by test_pyclbr. | Guido van Rossum | 2007-02-26 | 1 | -1/+1 |
|
|
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 | 1 | -1/+1 |
|
|
* | Rip out 'long' and 'L'-suffixed integer literals. | Guido van Rossum | 2007-01-15 | 1 | -14/+14 |
|
|
* | Merged the int/long unification branch, by very crude means (sorry Thomas!). | Guido van Rossum | 2007-01-14 | 1 | -1/+21 |
|
|
* | SF patch 1631942 by Collin Winter: | Guido van Rossum | 2007-01-10 | 1 | -2/+2 |
|
|
* | Get rid of dict.has_key(). Boy this has a lot of repercussions! | Guido van Rossum | 2006-08-18 | 1 | -7/+7 |
|
|