summaryrefslogtreecommitdiffstats
path: root/Modules/_pickle.c
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-126991: Fix reference leak in loading pickle's opcode BUILD (GH-126...Miss Islington (bot)2024-11-191-0/+1
* [3.12] gh-126461: Fix _Unpickler_ReadFromFile() error handling (GH-126485) (#...Miss Islington (bot)2024-11-061-0/+4
* [3.12] gh-113993: Make interned strings mortal (GH-120520, GH-121364, GH-1219...Petr Viktorin2024-09-271-4/+5
* [3.12] gh-123431: Harmonize extension code checks in pickle (GH-123434) (#123...Miss Islington (bot)2024-09-061-16/+8
* [3.12] gh-122311: Fix a refleak in pickle (GH-122411) (GH-122416)Miss Islington (bot)2024-07-291-0/+1
* [3.12] gh-122311: Fix some error messages in pickle (GH-122386) (GH-122388)Miss Islington (bot)2024-07-291-3/+3
* [3.12] gh-82951: Fix serializing by name in pickle protocols < 4 (GH-122149) ...Miss Islington (bot)2024-07-251-17/+36
* [3.12] gh-121137: Add missing Py_DECREF calls for ADDITEMS opcode of _pickle....Miss Islington (bot)2024-06-281-0/+2
* [3.12] bpo-41422: Visit the Pickler's and Unpickler's memo in tp_traverse (GH...Miss Islington (bot)2023-11-271-0/+15
* [3.12] gh-105375: Improve error handling in _Unpickler_SetInputStream() (#105...Erlend E. Aasland2023-06-131-13/+18
* [3.12] gh-105375: Explicitly initialise all {Pickler,Unpickler}Object fields ...Miss Islington (bot)2023-06-121-37/+53
* [3.12] gh-105375: Improve _pickle error handling (#105475) (#105584)Erlend E. Aasland2023-06-091-12/+27
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* gh-103092: Isolate `_pickle` module (#102982)Erlend E. Aasland2023-04-041-653/+609
* gh-102255: Improve build support for Windows API partitions (GH-102256)Max Bachmann2023-03-091-0/+6
* gh-99845: Use size_t type in __sizeof__() methods (#99846)Victor Stinner2022-11-301-15/+12
* gh-99537: Use Py_SETREF(var, NULL) in C code (#99687)Victor Stinner2022-11-231-2/+1
* gh-99537: Use Py_SETREF() function in C code (#99656)Victor Stinner2022-11-221-5/+2
* gh-99300: Use Py_NewRef() in Modules/ directory (#99467)Victor Stinner2022-11-141-49/+26
* remove new line in pickle exception message (GH-31782)Harshil2022-11-071-2/+2
* gh-83004: Clean up refleak in _pickle initialisation (#98841)Shantanu2022-11-061-7/+6
* GH-89988: Fix memory leak in pickle.Pickler dispatch_table lookup (GH-94298)Kumar Aditya2022-06-281-1/+3
* gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)Serhiy Storchaka2022-06-141-14/+2
* gh-92930: _pickle.c: Acquire strong references before calling save() (GH-92931)Dennis Sweeney2022-06-111-11/+36
* gh-89653: Use int type for Unicode kind (#92704)Victor Stinner2022-05-131-1/+1
* Use static inline function Py_EnterRecursiveCall() (#91988)Victor Stinner2022-05-041-11/+12
* gh-91731: Replace Py_BUILD_ASSERT() with static_assert() (#91730)Victor Stinner2022-04-201-1/+1
* bpo-46712: share more global strings in deepfreeze (gh-32152)Kumar Aditya2022-04-191-1/+1
* bpo-46906: Add PyFloat_Pack8() to the C API (GH-31657)Victor Stinner2022-03-111-3/+2
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-79/+49
* bpo-43974: Move Py_BUILD_CORE_MODULE into module code (GH-29157)Christian Heimes2021-10-221-2/+2
* bpo-35134: Add Include/cpython/floatobject.h (GH-28957)Victor Stinner2021-10-141-0/+1
* bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)Victor Stinner2021-10-131-0/+2
* Fix typos in the Modules directory (GH-28761)Christian Clauss2021-10-071-2/+2
* bpo-44029: Remove Py_UNICODE APIs (GH-25881)Inada Naoki2021-05-071-1/+1
* bpo-40137: Add pycore_moduleobject.h internal header (GH-25507)Victor Stinner2021-04-211-1/+2
* bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)Victor Stinner2020-12-011-1/+1
* bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)Victor Stinner2020-12-011-12/+12
* bpo-42152: Use PyDict_Contains and PyDict_SetDefault if appropriate. (GH-22986)Serhiy Storchaka2020-10-261-11/+6
* bpo-41288: Refactor of unpickling NEWOBJ and NEWOBJ_EX opcodes. (GH-21472)Serhiy Storchaka2020-07-181-76/+33
* bpo-41288: Fix a crash in unpickling invalid NEWOBJ_EX. (GH-21458)Serhiy Storchaka2020-07-131-8/+21
* bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781)Victor Stinner2020-06-101-2/+2
* bpo-39435: Make the first argument of pickle.loads() positional-only. (GH-19846)Serhiy Storchaka2020-05-021-1/+2
* bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner2020-04-151-1/+1
* bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data....Serhiy Storchaka2020-04-111-1/+1
* bpo-40024: Update C extension modules to use PyModule_AddType() (GH-19119)Dong-hee Na2020-03-241-11/+6
* bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)Andy Lester2020-03-041-2/+2
* bpo-39378: partial of PickleState struct should be traversed. (GH-18046)Hai Shi2020-03-021-0/+1
* bpo-39681: Fix C pickle regression with minimal file-like objects (#18592)Antoine Pitrou2020-02-231-5/+36
* bpo-39245: Switch to public API for Vectorcall (GH-18460)Petr Viktorin2020-02-111-5/+5