| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue #29190: Fixed possible errors in comparing strings in the pickle module. | Serhiy Storchaka | 2017-01-09 | 1 | -12/+6 |
| | | |||||
| * | Issue #28701: Replace PyUnicode_CompareWithASCIIString with ↵ | Serhiy Storchaka | 2016-11-16 | 1 | -1/+1 |
| | | | | | | | _PyUnicode_EqualToASCIIString. The latter function is more readable, faster and doesn't raise exceptions. | ||||
| * | Issue #17711: Fixed unpickling by the persistent ID with protocol 0. | Serhiy Storchaka | 2016-07-17 | 1 | -12/+22 |
| | | | | | Original patch by Alexandre Vassalotti. | ||||
| * | Issue #27332: Fixed the type of the first argument of module-level functions | Serhiy Storchaka | 2016-07-07 | 1 | -8/+8 |
| | | | | | generated by Argument Clinic. Patch by Petr Viktorin. | ||||
| * | Issue #27125: Remove duplicated words from documentation and comments | Martin Panter | 2016-05-30 | 1 | -1/+1 |
| | | |||||
| * | Issue #27076: Doc, comment and tests spelling fixes | Martin Panter | 2016-05-26 | 1 | -6/+6 |
| | | | | | Most fixes to Doc/ and Lib/ directories by Ville Skyttä. | ||||
| * | Issue #26778: Fixed "a/an/and" typos in code comment and documentation. | Serhiy Storchaka | 2016-04-17 | 1 | -1/+1 |
| | | |||||
| * | Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc | Martin Panter | 2016-04-15 | 1 | -1/+1 |
| | | | | | This affects documentation, code comments, and a debugging messages. | ||||
| * | Issue #22570: Renamed Py_SETREF to Py_XSETREF. | Serhiy Storchaka | 2016-04-06 | 1 | -2/+2 |
| | | |||||
| * | _pickle: Fix load_counted_tuple(), use Py_ssize_t for size | Victor Stinner | 2016-03-14 | 1 | -1/+1 |
| | | | | | Fix a warning on Windows 64-bit. | ||||
| * | Issue #20440: Applied yet one patch for using Py_SETREF. | Serhiy Storchaka | 2015-12-27 | 1 | -5/+3 |
| | | | | | The patch is automatically generated, it replaces the code that uses Py_CLEAR. | ||||
| * | Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. | Serhiy Storchaka | 2015-12-19 | 1 | -2/+2 |
| | | | | | | This allows sys.getsize() to work correctly with their subclasses with __slots__ defined. | ||||
| * | Fixed reference leak when read truncated pickle. | Serhiy Storchaka | 2015-11-30 | 1 | -1/+3 |
| |\ | |||||
| | * | Fixed reference leak when read truncated pickle. | Serhiy Storchaka | 2015-11-30 | 1 | -1/+3 |
| | | | |||||
| * | | Issue #25725: Fixed a reference leak in pickle.loads() when unpickling | Serhiy Storchaka | 2015-11-25 | 1 | -19/+8 |
| |\ \ | |/ | | | | | invalid data including tuple instructions. | ||||
| | * | Issue #25725: Fixed a reference leak in pickle.loads() when unpickling | Serhiy Storchaka | 2015-11-25 | 1 | -19/+8 |
| | | | | | | | | | invalid data including tuple instructions. | ||||
| * | | Issue #23914: Fixed SystemError raised by unpickler on broken pickle data. | Serhiy Storchaka | 2015-11-23 | 1 | -3/+16 |
| |\ \ | |/ | |||||
| | * | Issue #23914: Fixed SystemError raised by unpickler on broken pickle data. | Serhiy Storchaka | 2015-11-23 | 1 | -3/+16 |
| | | | |||||
| * | | Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 | Martin Panter | 2015-11-02 | 1 | -8/+8 |
| |\ \ | |/ | |||||
| | * | Issue #25523: Correct "a" article to "an" article | Martin Panter | 2015-11-02 | 1 | -8/+8 |
| | | | | | | | | | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar. | ||||
| * | | Issue #25262. Added support for BINBYTES8 opcode in Python implementation of | Serhiy Storchaka | 2015-09-29 | 1 | -2/+12 |
| |\ \ | |/ | | | | | | | unpickler. Highest 32 bits of 64-bit size for BINUNICODE8 and BINBYTES8 opcodes no longer silently ignored on 32-bit platforms in C implementation. | ||||
| | * | Issue #25262. Added support for BINBYTES8 opcode in Python implementation of | Serhiy Storchaka | 2015-09-29 | 1 | -1/+11 |
| | | | | | | | | | | | unpickler. Highest 32 bits of 64-bit size for BINUNICODE8 and BINBYTES8 opcodes no longer silently ignored on 32-bit platforms in C implementation. | ||||
| * | | merge 3.4 (#25245) | Benjamin Peterson | 2015-09-27 | 1 | -0/+1 |
| |\ \ | |/ | |||||
| | * | initialize return value to NULL to avoid compiler compliants (closes #25245) | Benjamin Peterson | 2015-09-27 | 1 | -0/+1 |
| | | | |||||
| * | | merge 3.4 | Benjamin Peterson | 2015-09-26 | 1 | -0/+6 |
| |\ \ | |/ | |||||
| | * | prevent overflow in _Unpickler_Read | Benjamin Peterson | 2015-09-26 | 1 | -0/+6 |
| | | | |||||
| * | | Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. | Yury Selivanov | 2015-07-03 | 1 | -1/+1 |
| | | | |||||
| * | | merge 3.4 (#24552) | Benjamin Peterson | 2015-07-02 | 1 | -1/+1 |
| |\ \ | |/ | |||||
| | * | fix use after free (closes #24552) | Benjamin Peterson | 2015-07-02 | 1 | -1/+1 |
| | | | |||||
| * | | merge 3.4 | Benjamin Peterson | 2015-06-27 | 1 | -16/+10 |
| |\ \ | |/ | |||||
| | * | merge 3.3 | Benjamin Peterson | 2015-06-27 | 1 | -16/+10 |
| | |\ | |||||
| | | * | use safe allocation and reallocation macros | Benjamin Peterson | 2015-06-27 | 1 | -16/+10 |
| | | | | |||||
| * | | | Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. | Larry Hastings | 2015-04-14 | 1 | -14/+23 |
| | | | | |||||
| * | | | Issue #23501: Argumen Clinic now generates code into separate files by default. | Serhiy Storchaka | 2015-04-03 | 1 | -2/+1 |
| | | | | |||||
| * | | | Issue #23611: Serializing more "lookupable" objects (such as unbound methods | Serhiy Storchaka | 2015-03-31 | 1 | -47/+71 |
| | | | | | | | | | | | | | or nested classes) now are supported with pickle protocols < 4. | ||||
| * | | | Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings. | Serhiy Storchaka | 2015-03-31 | 1 | -12/+14 |
| |\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | Fixed ambigious reverse mappings. Added many new mappings. Import mapping is no longer applied to modules already mapped with full name mapping. Added tests for compatible pickling and unpickling and for consistency of _compat_pickle mappings. | ||||
| | * | | Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings. | Serhiy Storchaka | 2015-03-31 | 1 | -12/+14 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Fixed ambigious reverse mappings. Added many new mappings. Import mapping is no longer applied to modules already mapped with full name mapping. Added tests for compatible pickling and unpickling and for consistency of _compat_pickle mappings. | ||||
| * | | | Issue #23096: Pickle representation of floats with protocol 0 now is the same | Serhiy Storchaka | 2015-02-15 | 1 | -1/+1 |
| | | | | | | | | | | | | | for both Python and C implementations. | ||||
| * | | | Issue #22783: Pickling now uses the NEWOBJ opcode instead of the NEWOBJ_EX | Serhiy Storchaka | 2014-12-16 | 1 | -13/+12 |
| | | | | | | | | | | | | | opcode if possible. | ||||
| * | | | Issue #15513: Added a __sizeof__ implementation for pickle classes. | Serhiy Storchaka | 2014-12-16 | 1 | -1/+57 |
| |\ \ \ | |/ / | |||||
| | * | | Issue #15513: Added a __sizeof__ implementation for pickle classes. | Serhiy Storchaka | 2014-12-16 | 1 | -1/+57 |
| | | | | |||||
| * | | | Fix uninitialized variable after #22676. | Antoine Pitrou | 2014-12-01 | 1 | -7/+17 |
| | | | | |||||
| * | | | Issue #22676: Make the pickling of global objects which don't have a ↵ | Antoine Pitrou | 2014-10-23 | 1 | -36/+72 |
| | | | | | | | | | | | | | __module__ attribute less slow. | ||||
| * | | | Silenced some warnings about comparison between signed and unsigned integer | Serhiy Storchaka | 2014-09-05 | 1 | -3/+3 |
| | | | | | | | | | | | | | expressions. | ||||
| * | | | Issue #22207: Fix "comparison between signed and unsigned integers" warning in | Victor Stinner | 2014-08-17 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | | test checking for integer overflow on Py_ssize_t type: cast explicitly to size_t. | ||||
| * | | | _pickle: Optimize raw_unicode_escape(), use directly a bytes object, don't use | Victor Stinner | 2014-08-17 | 1 | -10/+9 |
| | | | | | | | | | | | | | a temporary bytearray object. | ||||
| * | | | Issue #22218: Fix "comparison between signed and unsigned integers" warnings in | Victor Stinner | 2014-08-17 | 1 | -10/+11 |
| |/ / | | | | | | | Modules/_pickle.c. | ||||
| * | | Issue #20326: Argument Clinic now uses a simple, unique signature to | Larry Hastings | 2014-01-28 | 1 | -17/+17 |
| | | | | | | | | | | | | | | | | | | | | | annotate text signatures in docstrings, resulting in fewer false positives. "self" parameters are also explicitly marked, allowing inspect.Signature() to authoritatively detect (and skip) said parameters. Issue #20326: Argument Clinic now generates separate checksums for the input and output sections of the block, allowing external tools to verify that the input has not changed (and thus the output is not out-of-date). | ||||
| * | | Issue #20395: Extract generated clinic code in Modules/_pickle.c to separate ↵ | Serhiy Storchaka | 2014-01-27 | 1 | -479/+28 |
| | | | | | | | | | file. | ||||
| * | | silence compiler warning that 's' may be used uninitialized in the load ↵ | Christian Heimes | 2014-01-27 | 1 | -1/+1 |
| | | | | | | | | | function. | ||||
