summaryrefslogtreecommitdiff
path: root/Lib/pickle.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #21905: Avoid RuntimeError in pickle.whichmodule() when sys.modules is ...Antoine Pitrou2014-10-041-1/+3
* Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-201-1/+1
* Issue #6784: Strings from Python 2 can now be unpickled as bytes objects.Alexandre Vassalotti2013-12-071-29/+42
* Issue #6477: Merge with 3.3.Alexandre Vassalotti2013-11-301-1/+10
|\
| * Issue #6477: Added support for pickling the types of built-in singletons.Alexandre Vassalotti2013-11-301-1/+10
* | Make Ellipsis and NotImplemented picklable through the reduce protocol.Alexandre Vassalotti2013-11-241-8/+0
* | Make built-in methods picklable through the reduce protocol.Alexandre Vassalotti2013-11-241-8/+1
* | Make framing optional in pickle protocol 4.Alexandre Vassalotti2013-11-231-71/+59
* | Issue #17810: Implement PEP 3154, pickle protocol 4.Antoine Pitrou2013-11-231-154/+428
* | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-2/+2
|\ \ | |/
| * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-2/+2
* | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-2/+2
* | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-2/+2
* | Merge 3.3Alexandre Vassalotti2013-04-201-2/+8
|\ \ | |/
| * Isuse #17720: Fix APPENDS handling in the Python implementation of UnpicklerAlexandre Vassalotti2013-04-201-2/+8
* | Make C and Python implementations of pickle load STRING opcodes the same way.Alexandre Vassalotti2013-04-151-6/+5
* | Issue #17710: Fix pickle raising a SystemError on bogus input.Antoine Pitrou2013-04-151-1/+1
|\ \ | |/
| * Issue #17710: Fix pickle raising a SystemError on bogus input.Antoine Pitrou2013-04-151-1/+1
* | Closes #16551. Cleanup pickle.py.Serhiy Storchaka2013-04-141-138/+85
* | Style cleanups for pickle.py and _pickle.Alexandre Vassalotti2013-04-141-5/+7
|/
* Issue #12848: The pure Python pickle implementation now treats object lengths...Antoine Pitrou2012-11-241-13/+26
|\
| * Issue #12848: The pure Python pickle implementation now treats object lengths...Antoine Pitrou2012-11-241-13/+26
* | Fixes #13842: cannot pickle Ellipsis or NotImplemented.Ɓukasz Langa2012-03-121-0/+8
* | Issue #14166: Pickler objects now have an optional `dispatch_table` attribute...Antoine Pitrou2012-03-041-2/+2
* | Merge 3.2Alexandre Vassalotti2011-12-131-1/+5
|\ \ | |/
| * Issue #13505: Make pickling of bytes object compatible with Python 2.Alexandre Vassalotti2011-12-131-1/+5
* | Issue #13575: there is only one class type.Florent Xicluna2011-12-121-1/+1
* | Remove redundant imports.Florent Xicluna2011-11-041-1/+1
* | Merge 3.2Florent Xicluna2011-10-281-2/+0
|\ \ | |/ |/|
| * Issue #7689: Allow pickling of dynamically created classes when theirAntoine Pitrou2011-10-041-2/+0
| |\
| | * 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
* | | | 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 #12847: Fix a crash with negative PUT and LONG_BINPUT arguments inAntoine Pitrou2011-08-301-0/+6
|/
* 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