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
/
Modules
/
_pickle.c
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
|
Remove the tuple reuse optimization in _Pickle_FastCall.
Alexandre Vassalotti
2013-11-28
1
-30/+15
*
|
Encapsulate cpickle global state in a dedicated object.
Alexandre Vassalotti
2013-11-28
1
-270/+426
*
|
Combine the FastCall functions in cpickle.
Alexandre Vassalotti
2013-11-27
1
-90/+42
*
|
Reverting e39db21df580 eagerly due to buildbot failures.
Alexandre Vassalotti
2013-11-25
1
-33/+90
*
|
Combine _Pickler_FastCall and _Unpickler_FastCall in cpickle.
Alexandre Vassalotti
2013-11-25
1
-90/+33
*
|
Issue #19739: Try to fix compiler warnings on 32-bit Windows.
Alexandre Vassalotti
2013-11-25
1
-22/+21
*
|
Merge save_int into save_long in cpickle to remove redundant code.
Alexandre Vassalotti
2013-11-25
1
-53/+33
*
|
Simplify save_bool in cpickle.
Alexandre Vassalotti
2013-11-25
1
-18/+11
*
|
Use Clinic to process arguments in cpickle.
Alexandre Vassalotti
2013-11-24
1
-257/+672
*
|
Remove code path in cpickle that does not exist in pickle.
Alexandre Vassalotti
2013-11-24
1
-7/+1
*
|
Make Ellipsis and NotImplemented picklable through the reduce protocol.
Alexandre Vassalotti
2013-11-24
1
-32/+0
*
|
Make built-in methods picklable through the reduce protocol.
Alexandre Vassalotti
2013-11-24
1
-32/+0
*
|
Make framing optional in pickle protocol 4.
Alexandre Vassalotti
2013-11-24
1
-126/+34
*
|
Fix signed / unsigned comparison
Antoine Pitrou
2013-11-23
1
-1/+1
*
|
gcc doesn't realize that dummy is always initialized by the function call
Gregory P. Smith
2013-11-23
1
-1/+1
*
|
Issue #17810: Add two missing error checks to save_global
Christian Heimes
2013-11-23
1
-2/+4
*
|
Merge
Antoine Pitrou
2013-11-23
1
-1/+1
|
\
\
|
*
|
Issue #17810: return -1 on error
Christian Heimes
2013-11-23
1
-1/+1
*
|
|
Fix writing out 64-bit size fields on 32-bit builds
Antoine Pitrou
2013-11-23
1
-11/+21
|
/
/
*
|
Issue #17810: Add NULL check to save_frozenset
Christian Heimes
2013-11-23
1
-0/+3
*
|
Issue #17810: Implement PEP 3154, pickle protocol 4.
Antoine Pitrou
2013-11-23
1
-367/+1013
*
|
Issue #19437: Use an identifier for "__name__" string in pickle to improve
Victor Stinner
2013-11-14
1
-12/+5
*
|
Issue #19512: pickle now uses an identifier to only create the Unicode string
Victor Stinner
2013-11-06
1
-2/+4
*
|
Issue #19437: Fix _pickle, don't call _Unpickler_SkipConsumed() with an
Victor Stinner
2013-10-31
1
-3/+3
*
|
cleanup _Unpickler_SkipConsumed(): remove 1 level of indentation
Victor Stinner
2013-10-31
1
-12/+15
*
|
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka
2013-08-27
1
-7/+7
|
\
\
|
|
/
|
*
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka
2013-08-27
1
-7/+7
*
|
Issue #18559: Fix NULL pointer dereference error in _pickle module
Christian Heimes
2013-07-26
1
-4/+6
|
\
\
|
|
/
|
*
Issue #18559: Fix NULL pointer dereference error in _pickle module
Christian Heimes
2013-07-26
1
-4/+6
*
|
Issue #18408: handle PySys_GetObject() failure, raise a RuntimeError
Victor Stinner
2013-07-16
1
-2/+6
*
|
Issue #18408: _pickle.c: Add missing PyErr_NoMemory() on memory allocation fa...
Victor Stinner
2013-07-11
1
-2/+7
*
|
Issue #18408: _PyMemoTable_ResizeTable() now restores the old table if
Victor Stinner
2013-07-11
1
-1/+1
*
|
Issue #18408: Oh, I was wrong: Pickler_New() must call Py_DECREF() to destroy
Victor Stinner
2013-07-11
1
-1/+1
*
|
Issue #18408: Fix _Pickler_New() and _Unpickler_New(): initialize all
Victor Stinner
2013-07-11
1
-22/+14
*
|
Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup()
Victor Stinner
2013-07-07
1
-6/+6
*
|
Singular form just like the other error message.
Christian Heimes
2013-07-01
1
-1/+1
|
\
\
|
|
/
|
*
Singular form just like the other error message.
Christian Heimes
2013-07-01
1
-1/+1
*
|
Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a
Christian Heimes
2013-07-01
1
-0/+5
|
\
\
|
|
/
|
*
Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a
Christian Heimes
2013-07-01
1
-0/+5
*
|
Fix resource leak in pickle module
Christian Heimes
2013-06-29
1
-1/+3
*
|
Merge 3.3
Alexandre Vassalotti
2013-04-21
1
-0/+2
|
\
\
|
|
/
|
*
Fix reference leak in _pickle.
Alexandre Vassalotti
2013-04-21
1
-0/+2
*
|
Make C and Python implementations of pickle load STRING opcodes the same way.
Alexandre Vassalotti
2013-04-16
1
-19/+6
*
|
Issue #17710: Fix pickle raising a SystemError on bogus input.
Antoine Pitrou
2013-04-15
1
-4/+4
|
\
\
|
|
/
|
*
Issue #17710: Fix pickle raising a SystemError on bogus input.
Antoine Pitrou
2013-04-15
1
-4/+4
*
|
Style cleanups for pickle.py and _pickle.
Alexandre Vassalotti
2013-04-14
1
-4/+2
*
|
Merge 3.3
Alexandre Vassalotti
2013-04-14
1
-2/+2
|
\
\
|
|
/
|
*
Clean up error messages raised by save_reduce in _pickle.
Alexandre Vassalotti
2013-04-14
1
-2/+2
*
|
gibibytes (Arfrever)
Antoine Pitrou
2013-04-07
1
-1/+1
*
|
Issue #15596: Faster pickling of unicode strings.
Antoine Pitrou
2013-04-07
1
-35/+69
|
/
[prev]
[next]