index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
pickle.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-39426: Fix outdated default and highest protocols in docs (GH-18154)
Mark Dickinson
2020-01-24
1
-3/+3
*
bpo-38876: Raise pickle.UnpicklingError when loading an item from memo for in...
Claudiu Popa
2019-11-24
1
-3/+15
*
bpo-37210: Fix pure Python pickle when _pickle is unavailable (GH-14016)
Victor Stinner
2019-06-13
1
-26/+33
*
bpo-31829: Make protocol 0 pickles be loadable in text mode in Python 2. (GH-...
Serhiy Storchaka
2019-05-31
1
-0/+3
*
bpo-36785: PEP 574 implementation (GH-7076)
Antoine Pitrou
2019-05-26
1
-13/+139
*
bpo-36842: Implement PEP 578 (GH-12613)
Steve Dower
2019-05-23
1
-0/+1
*
bpo-35900: Enable custom reduction callback registration in _pickle (GH-12499)
Pierre Glaser
2019-05-08
1
-20/+28
*
bpo-35900: Add a state_setter arg to save_reduce (GH-12588)
Pierre Glaser
2019-05-08
1
-5/+22
*
bpo-11572: Make minor improvements to copy module (GH-8208)
Berker Peksag
2018-07-09
1
-5/+1
*
bpo-23403: Bump pickle.DEFAULT_PROTOCOL to 4 (#6355)
Ćukasz Langa
2018-04-04
1
-5/+5
*
bpo-32503: Avoid creating too small frames in pickles. (#5127)
Serhiy Storchaka
2018-01-20
1
-5/+7
*
bpo-31993: Do not allocate large temporary buffers in pickle dump. (#4353)
Olivier Grisel
2018-01-06
1
-10/+40
*
bpo-32037: Use the INT opcode for 32-bit integers in protocol 0 pickles. (#4407)
Serhiy Storchaka
2017-11-16
1
-1/+4
*
bpo-29762: More use "raise from None". (#569)
Serhiy Storchaka
2017-04-05
1
-3/+3
*
Issue #29368: The extend() method is now called instead of the append()
Serhiy Storchaka
2017-02-02
1
-5/+12
*
Issue #17711: Fixed unpickling by the persistent ID with protocol 0.
Serhiy Storchaka
2016-07-17
1
-2/+10
|
\
|
*
Issue #17711: Fixed unpickling by the persistent ID with protocol 0.
Serhiy Storchaka
2016-07-17
1
-2/+10
*
|
Issue #27076: Merge spelling from 3.5
Martin Panter
2016-05-26
1
-1/+1
|
\
\
|
|
/
|
*
Issue #27076: Doc, comment and tests spelling fixes
Martin Panter
2016-05-26
1
-1/+1
*
|
Issue #25761: Improved detecting errors in broken pickle data.
Serhiy Storchaka
2015-12-06
1
-52/+36
*
|
Removed debugging output of exception raised by __reduce__ method.
Serhiy Storchaka
2015-11-30
1
-7/+1
|
\
\
|
|
/
|
*
Removed debugging output of exception raised by __reduce__ method.
Serhiy Storchaka
2015-11-30
1
-7/+1
|
|
\
|
|
*
Removed debugging output of exception raised by __reduce__ method.
Serhiy Storchaka
2015-11-30
1
-7/+1
*
|
|
Issue #25523: Merge a-to-an corrections from 3.5
Martin Panter
2015-11-02
1
-2/+2
|
\
\
\
|
|
/
/
|
*
|
Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5
Martin Panter
2015-11-02
1
-2/+2
|
|
\
\
|
|
|
/
|
|
*
Issue #25523: Correct "a" article to "an" article
Martin Panter
2015-11-02
1
-2/+2
*
|
|
Issue #24164: Objects that need calling ``__new__`` with keyword arguments,
Serhiy Storchaka
2015-10-10
1
-5/+12
|
/
/
*
|
Issue #25262. Added support for BINBYTES8 opcode in Python implementation of
Serhiy Storchaka
2015-09-29
1
-0/+8
|
\
\
|
|
/
|
*
Issue #25262. Added support for BINBYTES8 opcode in Python implementation of
Serhiy Storchaka
2015-09-29
1
-0/+8
*
|
Issue #23611: Serializing more "lookupable" objects (such as unbound methods
Serhiy Storchaka
2015-03-31
1
-15/+18
|
/
*
Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings.
Serhiy Storchaka
2015-03-31
1
-2/+2
*
Issue #23094: Fixed readline with frames in Python implementation of pickle.
Serhiy Storchaka
2015-01-26
1
-1/+1
*
Issue #21905: Avoid RuntimeError in pickle.whichmodule() when sys.modules is ...
Antoine Pitrou
2014-10-04
1
-1/+3
*
Issue #20976: pyflakes: Remove unused imports
Victor Stinner
2014-03-20
1
-1/+1
*
Issue #6784: Strings from Python 2 can now be unpickled as bytes objects.
Alexandre Vassalotti
2013-12-07
1
-29/+42
*
Issue #6477: Merge with 3.3.
Alexandre Vassalotti
2013-12-01
1
-1/+10
|
\
|
*
Issue #6477: Added support for pickling the types of built-in singletons.
Alexandre Vassalotti
2013-12-01
1
-1/+10
*
|
Make Ellipsis and NotImplemented picklable through the reduce protocol.
Alexandre Vassalotti
2013-11-24
1
-8/+0
*
|
Make built-in methods picklable through the reduce protocol.
Alexandre Vassalotti
2013-11-24
1
-8/+1
*
|
Make framing optional in pickle protocol 4.
Alexandre Vassalotti
2013-11-24
1
-71/+59
*
|
Issue #17810: Implement PEP 3154, pickle protocol 4.
Antoine Pitrou
2013-11-23
1
-154/+428
*
|
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka
2013-08-27
1
-2/+2
|
\
\
|
|
/
|
*
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka
2013-08-27
1
-2/+2
*
|
Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)
Brett Cannon
2013-07-04
1
-2/+2
*
|
Issue #18200: Update the stdlib (except tests) to use
Brett Cannon
2013-06-14
1
-2/+2
*
|
Merge 3.3
Alexandre Vassalotti
2013-04-20
1
-2/+8
|
\
\
|
|
/
|
*
Isuse #17720: Fix APPENDS handling in the Python implementation of Unpickler
Alexandre Vassalotti
2013-04-20
1
-2/+8
*
|
Make C and Python implementations of pickle load STRING opcodes the same way.
Alexandre Vassalotti
2013-04-16
1
-6/+5
*
|
Issue #17710: Fix pickle raising a SystemError on bogus input.
Antoine Pitrou
2013-04-15
1
-1/+1
|
\
\
|
|
/
|
*
Issue #17710: Fix pickle raising a SystemError on bogus input.
Antoine Pitrou
2013-04-15
1
-1/+1
[next]