COMMITS
/ Modules/pyexpat.c December 31, 2021
S
bpo-45321: Add missing error codes to module `xml.parsers.expat.errors` (GH-30188)
Sebastian Pipping committed
October 2, 2021
T
bpo-45329: Fix freed memory access in pyexpat.c (GH-28649)
TAGAMI Yukihiro committed
June 17, 2021
E
bpo-43908: Make heap types converted during 3.10 alpha immutable (GH-26351)
Erlend Egeberg Aasland committed
May 27, 2021
E
bpo-42972: Fully support GC for pyexpat, unicodedata, and dbm/gdbm heap types (GH-26376)
Erlend Egeberg Aasland committed
April 30, 2021
E
bpo-43916: Apply Py_TPFLAGS_DISALLOW_INSTANTIATION to selected types (GH-25748)
Erlend Egeberg Aasland committed
January 4, 2021
M
bpo-1635741: Port pyexpat to multi-phase init (PEP 489) (GH-22222)
Mohamed Koubaa committed
January 3, 2021
H
November 4, 2020
M
bpo-1635741: Fix PyInit_pyexpat() error handling (GH-22489)
Mohamed Koubaa committed
October 26, 2020
S
bpo-42152: Use PyDict_Contains and PyDict_SetDefault if appropriate. (GH-22986)
Serhiy Storchaka committed
April 15, 2020
V
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner committed
April 11, 2020
S
bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345)
Serhiy Storchaka committed
February 11, 2020
P
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin committed
October 7, 2019
V
bpo-38392: PyObject_GC_Track() validates object in debug mode (GH-16615)
Victor Stinner committed
September 14, 2019
S
bpo-37206: Unrepresentable default values no longer represented as None. (GH-13933)
Serhiy Storchaka committed
September 1, 2019
S
bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630)
Serhiy Storchaka committed
July 11, 2019
J
bpo-29548: no longer use PyEval_Call* functions (GH-14683)
Jeroen Demeyer committed
July 4, 2019
J
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer committed
May 31, 2019
J
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Jeroen Demeyer committed
February 25, 2019
S
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka committed
November 22, 2018
V
bpo-9566: Fix compiler warnings in pyexpat.c (GH-10654)
Victor Stinner committed
October 19, 2018
S
bpo-34741: Get rid of tp_getattro and tp_setattro in pyexpat.xmlparser. (GH-9422)
Serhiy Storchaka committed
Z
Fix several reference counting bugs in pyexpat.c. (GH-9955)
Zackery Spytz committed
September 18, 2018
C
bpo-34623: Use XML_SetHashSalt in _elementtree (GH-9146)
Christian Heimes committed
September 15, 2017
E
bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593)
Eric Snow committed
September 14, 2017
E
bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)
Eric Snow committed
September 4, 2017
E
bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)
Eric Snow committed
June 14, 2017
V
bpo-29591: Upgrade Modules/expat to libexpat 2.2 (#2164)
Victor Stinner committed
March 12, 2017
S
bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485)
Serhiy Storchaka committed
March 9, 2017
S
bpo-29768: Fixed compile-time check for expat version. (#574)
Serhiy Storchaka committed
February 4, 2017
S
Removed redundant Argument Clinic directives.
Serhiy Storchaka committed
January 23, 2017
S
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka committed
December 5, 2016
V
Issue #28858: Remove _PyObject_CallArg1() macro
Victor Stinner committed
December 1, 2016
V
Replace PyObject_CallFunction() with fastcall
Victor Stinner committed
November 16, 2016
S
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString.
Serhiy Storchaka committed
S
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString.
Serhiy Storchaka committed
September 8, 2016
C
Add error checking to PyInit_pyexpact
Christian Heimes committed
July 7, 2016
S
- Issue #27332: Fixed the type of the first argument of module-level functions
Serhiy Storchaka committed
S
Issue #27332: Fixed the type of the first argument of module-level functions
Serhiy Storchaka committed
April 6, 2016
S
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka committed
December 27, 2015
S
Issue #20440: Cleaning up the code by using Py_SETREF and Py_CLEAR.
Serhiy Storchaka committed
December 25, 2015
S
Issue #25923: Added more const qualifiers to signatures of static and private functions.
Serhiy Storchaka committed
November 7, 2015
S
Issue #25558: Use compile-time asserts.
Serhiy Storchaka committed
September 7, 2015
S
Raise more correct exception on overflow in setting buffer_size attribute of
Serhiy Storchaka committed
S
Raise more correct exception on overflow in setting buffer_size attribute of
Serhiy Storchaka committed
S
Issue #25019: Fixed a crash caused by setting non-string key of expat parser.
Serhiy Storchaka committed
S
Issue #25019: Fixed a crash caused by setting non-string key of expat parser.
Serhiy Storchaka committed
May 30, 2015
S
Specify default values of semantic booleans in Argument Clinic generated signatures as booleans.
Serhiy Storchaka committed
May 4, 2015
L
Issue #24001: Argument Clinic converters now use accept={type}
Larry Hastings committed
April 14, 2015
L
Issue #23944: Argument Clinic now wraps long impl prototypes at column 78.
Larry Hastings committed
April 3, 2015
S
Issue #23501: Argumen Clinic now generates code into separate files by default.
Serhiy Storchaka committed