- dec25af Issue #17711: Fixed unpickling by the persistent ID with protocol 0. by Serhiy Storchaka · 8 years ago
- 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
- a90a4a9 Issue #27125: Remove duplicated words from documentation and comments by Martin Panter · 8 years ago
- 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 8 years ago
- 6a7b3a7 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 9 years ago
- 6245cb3 Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc by Martin Panter · 9 years ago
- 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 9 years ago
- 13f0c61 _pickle: Fix load_counted_tuple(), use Py_ssize_t for size by Victor Stinner · 9 years ago
- 4a1e70f Issue #20440: Applied yet one patch for using Py_SETREF. by Serhiy Storchaka · 9 years ago
- 5c4064e Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 9 years ago
- 77a61d2 Fixed reference leak when read truncated pickle. by Serhiy Storchaka · 9 years ago
- ca28eba Fixed reference leak when read truncated pickle. by Serhiy Storchaka · 9 years ago
- c5f3b42 Issue #25725: Fixed a reference leak in pickle.loads() when unpickling by Serhiy Storchaka · 9 years ago
- a49de6b Issue #25725: Fixed a reference leak in pickle.loads() when unpickling by Serhiy Storchaka · 9 years ago
- 4409c6c Issue #23914: Fixed SystemError raised by unpickler on broken pickle data. by Serhiy Storchaka · 9 years ago
- e9b3074 Issue #23914: Fixed SystemError raised by unpickler on broken pickle data. by Serhiy Storchaka · 9 years ago
- 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
- 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
- 525faae Issue #25262. Added support for BINBYTES8 opcode in Python implementation of by Serhiy Storchaka · 9 years ago
- e060619 Issue #25262. Added support for BINBYTES8 opcode in Python implementation of by Serhiy Storchaka · 9 years ago
- bdb93c3 merge 3.4 (#25245) by Benjamin Peterson · 9 years ago
- 6aa1564 initialize return value to NULL to avoid compiler compliants (closes #25245) by Benjamin Peterson · 9 years ago
- 03c59b9 merge 3.4 by Benjamin Peterson · 9 years ago
- e48cf7e prevent overflow in _Unpickler_Read by Benjamin Peterson · 9 years ago
- f488fb4 Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. by Yury Selivanov · 9 years ago
- 42e913a merge 3.4 (#24552) by Benjamin Peterson · 9 years ago
- 80f78a3 fix use after free (closes #24552) by Benjamin Peterson · 9 years ago
- 7763c68 merge 3.4 by Benjamin Peterson · 9 years ago
- ff0f322 merge 3.3 by Benjamin Peterson · 9 years ago
- 59b08c1 use safe allocation and reallocation macros by Benjamin Peterson · 9 years ago
- 89964c4 Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. by Larry Hastings · 10 years ago
- 1009bf1 Issue #23501: Argumen Clinic now generates code into separate files by default. by Serhiy Storchaka · 10 years ago
- 58e4134 Issue #23611: Serializing more "lookupable" objects (such as unbound methods by Serhiy Storchaka · 10 years ago
- d5d818d Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings. by Serhiy Storchaka · 10 years ago
- bfe1824 Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings. by Serhiy Storchaka · 10 years ago
- c86ca26 Issue #23096: Pickle representation of floats with protocol 0 now is the same by Serhiy Storchaka · 10 years ago
- 707b5cc Issue #22783: Pickling now uses the NEWOBJ opcode instead of the NEWOBJ_EX by Serhiy Storchaka · 10 years ago
- 01bdd9a Issue #15513: Added a __sizeof__ implementation for pickle classes. by Serhiy Storchaka · 10 years ago
- 5bbd231 Issue #15513: Added a __sizeof__ implementation for pickle classes. by Serhiy Storchaka · 10 years ago
- 6cd5eda Fix uninitialized variable after #22676. by Antoine Pitrou · 10 years ago
- fce60ea Issue #22676: Make the pickling of global objects which don't have a __module__ attribute less slow. by Antoine Pitrou · 10 years ago
- 67c719b Silenced some warnings about comparison between signed and unsigned integer by Serhiy Storchaka · 10 years ago
- 049e509 Issue #22207: Fix "comparison between signed and unsigned integers" warning in by Victor Stinner · 10 years ago
- 7270b7f _pickle: Optimize raw_unicode_escape(), use directly a bytes object, don't use by Victor Stinner · 10 years ago
- f13c46c Issue #22218: Fix "comparison between signed and unsigned integers" warnings in by Victor Stinner · 10 years ago
- 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 11 years ago
- 3c1f0f1 Issue #20395: Extract generated clinic code in Modules/_pickle.c to separate file. by Serhiy Storchaka · 11 years ago
- 27ea78b silence compiler warning that 's' may be used uninitialized in the load function. by Christian Heimes · 11 years ago
- c204726 Issue #20390: Small fixes and improvements for Argument Clinic. by Larry Hastings · 11 years ago
- 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 11 years ago
- 4625826 Two minor Argument Clinic bugfixes: use the name of the class in the by Larry Hastings · 11 years ago
- b7ccb20 Issue #20294: Argument Clinic now supports argument parsing for __new__ and by Larry Hastings · 11 years ago
- bebf735 Issue #20287: Argument Clinic's output is now configurable, allowing by Larry Hastings · 11 years ago
- 8666e65 Issue #20228: Argument Clinic now has special support for class special methods. by Larry Hastings · 11 years ago
- 61272b7 Issue #19273: The marker comments Argument Clinic uses have been changed by Larry Hastings · 11 years ago
- 3cceb38 Issue #19976: Argument Clinic METH_NOARGS functions now always by Larry Hastings · 11 years ago
- f483b0f Issue #19972: Add rarely used freefunc. This fixes a leak if sys.exit() by Stefan Krah · 11 years ago
- d05c9ff Issue #6784: Strings from Python 2 can now be unpickled as bytes objects. by Alexandre Vassalotti · 11 years ago
- 6e73ff1 Issue #19881: Fix bad pickling of large bytes in cpickle. by Alexandre Vassalotti · 11 years ago
- 2ccf8e9 Issue #6477: Merge with 3.3. by Alexandre Vassalotti · 11 years ago
- 65846c6 Issue #6477: Keep PyNotImplemented_Type and PyNone_Type private. by Alexandre Vassalotti · 11 years ago
- 3c23e7a Issue #6477: Merge with 3.3. by Alexandre Vassalotti · 11 years ago
- 19b6fa6 Issue #6477: Added support for pickling the types of built-in singletons. by Alexandre Vassalotti · 11 years ago
- a1eedf9 Merge with 3.3. by Alexandre Vassalotti · 11 years ago
- 896414f Fixed _pickle.Unpickler to handle empty persistent IDs correctly. by Alexandre Vassalotti · 11 years ago
- 6fe39b7 Issue #17897: Optimized unpickle prefetching. by Serhiy Storchaka · 11 years ago
- 567eba1 Use PyDict_GetItemWithError instead of PyDict_GetItem in cpickle. by Alexandre Vassalotti · 11 years ago
- 6bf41e5 Remove explicit empty tuple reuse in cpickle. by Alexandre Vassalotti · 11 years ago
- b13e6bc Remove the tuple reuse optimization in _Pickle_FastCall. by Alexandre Vassalotti · 11 years ago
- 23bdd83 Encapsulate cpickle global state in a dedicated object. by Alexandre Vassalotti · 11 years ago
- 20c28c1 Combine the FastCall functions in cpickle. by Alexandre Vassalotti · 11 years ago
- b4a04fb Reverting e39db21df580 eagerly due to buildbot failures. by Alexandre Vassalotti · 11 years ago
- f94a041 Combine _Pickler_FastCall and _Unpickler_FastCall in cpickle. by Alexandre Vassalotti · 11 years ago
- 1048fb5 Issue #19739: Try to fix compiler warnings on 32-bit Windows. by Alexandre Vassalotti · 11 years ago
- ded929b Merge save_int into save_long in cpickle to remove redundant code. by Alexandre Vassalotti · 11 years ago
- 8a67f52 Simplify save_bool in cpickle. by Alexandre Vassalotti · 11 years ago
- ed8c906 Use Clinic to process arguments in cpickle. by Alexandre Vassalotti · 11 years ago
- fc91285 Remove code path in cpickle that does not exist in pickle. by Alexandre Vassalotti · 11 years ago
- c49477b Make Ellipsis and NotImplemented picklable through the reduce protocol. by Alexandre Vassalotti · 11 years ago
- 4c05d3b Make built-in methods picklable through the reduce protocol. by Alexandre Vassalotti · 11 years ago
- b6a2f2a Make framing optional in pickle protocol 4. by Alexandre Vassalotti · 11 years ago
- c1207c1 Fix signed / unsigned comparison by Antoine Pitrou · 11 years ago
- 2b38fc1 gcc doesn't realize that dummy is always initialized by the function call by Gregory P. Smith · 11 years ago
- e8b1ba1 Issue #17810: Add two missing error checks to save_global by Christian Heimes · 11 years ago
- 6188d09 Merge by Antoine Pitrou · 11 years ago
- 74d8d63 Issue #17810: return -1 on error by Christian Heimes · 11 years ago
- 8f2ee6e Fix writing out 64-bit size fields on 32-bit builds by Antoine Pitrou · 11 years ago
- b3d3ee4 Issue #17810: Add NULL check to save_frozenset by Christian Heimes · 11 years ago
- c9dc4a2 Issue #17810: Implement PEP 3154, pickle protocol 4. by Antoine Pitrou · 11 years ago
- 804e05e Issue #19437: Use an identifier for "__name__" string in pickle to improve by Victor Stinner · 11 years ago
- bb52020 Issue #19512: pickle now uses an identifier to only create the Unicode string by Victor Stinner · 11 years ago
- 2ae57e3 Issue #19437: Fix _pickle, don't call _Unpickler_SkipConsumed() with an by Victor Stinner · 11 years ago
- b43ad1d cleanup _Unpickler_SkipConsumed(): remove 1 level of indentation by Victor Stinner · 11 years ago
- 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
- 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
- f446d21 Issue #18559: Fix NULL pointer dereference error in _pickle module by Christian Heimes · 11 years ago
- 9ee5c37 Issue #18559: Fix NULL pointer dereference error in _pickle module by Christian Heimes · 11 years ago
- 1e53bba Issue #18408: handle PySys_GetObject() failure, raise a RuntimeError by Victor Stinner · 11 years ago
- 4202456 Issue #18408: _pickle.c: Add missing PyErr_NoMemory() on memory allocation failures by Victor Stinner · 11 years ago
- 8ca72e2 Issue #18408: _PyMemoTable_ResizeTable() now restores the old table if by Victor Stinner · 11 years ago