COMMITS
/ Python/marshal.c August 25, 2021
B
bpo-37596: Make `set` and `frozenset` marshalling deterministic (GH-27926)
Brandt Bucher committed
July 7, 2021
G
bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)
Gabriele N. Tornetta committed
July 2, 2021
P
bpo-43950: Add code.co_positions (PEP 657) (GH-26955)
Pablo Galindo committed
June 30, 2021
P
Fix compiler errors for unused variables in marshal.c (GH-26977)
Pablo Galindo committed
June 21, 2021
G
bpo-43693: Turn localspluskinds into an object (GH-26749)
Guido van Rossum committed
June 7, 2021
E
bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)
Eric Snow committed
June 4, 2021
June 3, 2021
May 27, 2021
E
bpo-43693: Add _PyCode_New(). (gh-26375)
Eric Snow committed
May 7, 2021
M
bpo-40222: "Zero cost" exception handling (GH-25729)
Mark Shannon committed
December 1, 2020
V
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
Victor Stinner committed
November 12, 2020
M
bpo-42246: Partial implementation of PEP 626. (GH-23113)
Mark Shannon committed
September 8, 2020
V
bpo-1635741: Port mashal module to multi-phase init (#22149)
Victor Stinner committed
July 3, 2020
T
bpo-41180: Audit code.__new__ when unmarshalling (GH-21271)
tkmikan committed
May 14, 2020
V
bpo-40602: Write unit tests for _Py_hashtable_t (GH-20091)
Victor Stinner committed
May 13, 2020
V
bpo-40609: _Py_hashtable_t values become void* (GH-20065)
Victor Stinner committed
V
bpo-40609: Add destroy functions to _Py_hashtable (GH-20062)
Victor Stinner committed
V
bpo-40609: Remove _Py_hashtable_t.key_size (GH-20060)
Victor Stinner committed
May 12, 2020
V
bpo-40602: Rename hashtable.h to pycore_hashtable.h (GH-20044)
Victor Stinner committed
March 31, 2020
S
bpo-39943: Clean up marshal.c. (GH-19236)
Serhiy Storchaka committed
February 12, 2020
A
closes bpo-39605: Fix some casts to not cast away const. (GH-18453)
Andy Lester committed
February 7, 2020
V
bpo-39573: Use Py_SET_SIZE() function (GH-18402)
Victor Stinner committed
V
bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391)
Victor Stinner committed
November 20, 2019
B
bpo-38823: Fix refleak in marshal init error path (GH-17260)
Brandt Bucher committed
July 11, 2019
J
bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)
Jeroen Demeyer committed
July 1, 2019
April 29, 2019
P
bpo-36540: PEP 570 -- Implementation (GH-12701)
Pablo Galindo committed
December 7, 2018
Z
bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-11015)
Zackery Spytz committed
July 24, 2018
S
bpo-33720: Refactor marshalling/unmarshalling floats. (GH-8071)
Serhiy Storchaka committed
June 4, 2018
S
bpo-33720: Reduces maximum marshal recursion depth on release builds. (GH-7401)
Steve Dower committed
November 15, 2017
S
bpo-32011: Revert "Issue #15480: Remove the deprecated and unused TYPE_INT64 code from marshal." (#4381)
Serhiy Storchaka committed
September 7, 2017
B
remove current_filename optimization from marshal (#3423) (closes bpo-31384)
Benjamin Peterson committed
August 21, 2017
S
bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (#3157)
Stefan Krah committed
March 12, 2017
S
bpo-20185: Convert the marshal module to Argument Clinic. (#541)
Serhiy Storchaka committed
S
bpo-29746: Update marshal docs to Python 3. (#547)
Serhiy Storchaka committed
December 9, 2016
V
Use _PyObject_CallMethodIdObjArgs()
Victor Stinner committed
December 1, 2016
V
Replace PyObject_CallFunction() with fastcall
Victor Stinner committed
September 13, 2016
C
Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly optimize memcpy().
Christian Heimes committed
March 23, 2016
V
Cleanup hashtable.h
Victor Stinner committed
V
Issue #26588:
Victor Stinner committed
March 21, 2016
V
hashtable.h now supports keys of any size
Victor Stinner committed
V
Ooops, revert changeset ea9efa06c137
Victor Stinner committed
March 18, 2016
V
_tracemalloc: add domain to trace keys
Victor Stinner committed
January 23, 2016
V
Issue #26146: marshal.loads() now uses the empty frozenset singleton
Victor Stinner committed
December 25, 2015
S
Issue #25923: Added more const qualifiers to signatures of static and private functions.
Serhiy Storchaka committed
December 18, 2015
S
Issue #25899: Converted non-ASCII characters in docstrings and manpage
Serhiy Storchaka committed
March 30, 2015
V
Issue #23752: _Py_fstat() is now responsible to raise the Python exception
Victor Stinner committed
March 24, 2015
V
Issue #23753: Python doesn't support anymore platforms without stat() or
Victor Stinner committed
February 21, 2015
S
Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Windows.
Steve Dower committed