aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/marshal.c
Commit message (Expand)AuthorAge
* gh-106320: Move private _PySet API to the internal API (#107041)Victor Stinner2023-07-22
* gh-104922: remove PY_SSIZE_T_CLEAN (#106315)Inada Naoki2023-07-02
* gh-101006: Improve error handling when read marshal data (GH-101007)Serhiy Storchaka2023-06-29
* gh-106084: Remove old PyObject call aliases (#106085)Victor Stinner2023-06-26
* gh-103906: Remove immortal refcounting in compile/marshal.c (gh-103922)Dong-hee Na2023-06-05
* gh-105184: document that marshal functions can fail and need to be checked wi...Irit Katriel2023-06-02
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-05
* GH-101291: Rearrange the size bits in PyLongObject (GH-102464)Mark Shannon2023-03-22
* GH-101291: Refactor the `PyLongObject` struct into object header and PyLongVa...Mark Shannon2023-01-30
* gh-99537: Use Py_SETREF(var, NULL) in C code (#99687)Victor Stinner2022-11-23
* gh-99300: Replace Py_INCREF() with Py_NewRef() (#99530)Victor Stinner2022-11-16
* gh-99300: Use Py_NewRef() in Python/ directory (#99302)Victor Stinner2022-11-10
* gh-98925: Lower marshal recursion depth for WASI (GH-98938)Brett Cannon2022-11-01
* gh-78214: marshal: Stabilize FLAG_REF usage (GH-8226)Inada Naoki2022-05-04
* GH-88116: Use a compact format to represent end line and column offsets. (GH-...Mark Shannon2022-04-21
* bpo-35134: Remove the Include/code.h header file (GH-32385)Victor Stinner2022-04-07
* bpo-46841: Quicken code in-place (GH-31888)Brandt Bucher2022-03-21
* bpo-46906: Add PyFloat_Pack8() to the C API (GH-31657)Victor Stinner2022-03-12
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-08
* bpo-35134: Move classobject.h to Include/cpython/ (GH-28968)Victor Stinner2021-10-15
* bpo-35134: Add Include/cpython/floatobject.h (GH-28957)Victor Stinner2021-10-14
* bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)Victor Stinner2021-10-12
* bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)Victor Stinner2021-10-12
* bpo-45094: Add Py_NO_INLINE macro (GH-28140)Victor Stinner2021-09-03
* bpo-37596: Clean up the set/frozenset marshalling code (GH-28068)Brandt Bucher2021-08-31
* bpo-37596: Make `set` and `frozenset` marshalling deterministic (GH-27926)Brandt Bucher2021-08-25
* bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)Gabriele N. Tornetta2021-07-07
* bpo-43950: Add code.co_positions (PEP 657) (GH-26955)Pablo Galindo2021-07-02
* Fix compiler errors for unused variables in marshal.c (GH-26977)Pablo Galindo2021-06-30
* bpo-41180: Replace marshal code.__new__ audit event with marshal.load[s] and ...Steve Dower2021-06-30
* bpo-43693: Turn localspluskinds into an object (GH-26749)Guido van Rossum2021-06-21
* bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)Eric Snow2021-06-07
* bpo-43693: Revert commits 2c1e2583fdc4db6b43d163239ea42b0e8394171f and b2bf2b...Pablo Galindo2021-06-04
* bpo-43693: Add new internal code objects fields: co_fastlocalnames and co_fas...Eric Snow2021-06-03
* bpo-43693: Add _PyCode_New(). (gh-26375)Eric Snow2021-05-27
* bpo-40222: "Zero cost" exception handling (GH-25729)Mark Shannon2021-05-07
* bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)Victor Stinner2020-12-01
* bpo-42246: Partial implementation of PEP 626. (GH-23113)Mark Shannon2020-11-12
* bpo-1635741: Port mashal module to multi-phase init (#22149)Victor Stinner2020-09-08
* bpo-41180: Audit code.__new__ when unmarshalling (GH-21271)tkmikan2020-07-03
* bpo-40602: Write unit tests for _Py_hashtable_t (GH-20091)Victor Stinner2020-05-14
* bpo-40609: _Py_hashtable_t values become void* (GH-20065)Victor Stinner2020-05-13
* bpo-40609: Add destroy functions to _Py_hashtable (GH-20062)Victor Stinner2020-05-13
* bpo-40609: Remove _Py_hashtable_t.key_size (GH-20060)Victor Stinner2020-05-13
* bpo-40602: Rename hashtable.h to pycore_hashtable.h (GH-20044)Victor Stinner2020-05-12
* bpo-39943: Clean up marshal.c. (GH-19236)Serhiy Storchaka2020-03-31
* closes bpo-39605: Fix some casts to not cast away const. (GH-18453)Andy Lester2020-02-11
* bpo-39573: Use Py_SET_SIZE() function (GH-18402)Victor Stinner2020-02-07
* bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391)Victor Stinner2020-02-07
* bpo-38823: Fix refleak in marshal init error path (GH-17260)Brandt Bucher2019-11-20