COMMITS
/ Modules/_sre.c October 7, 2021
C
Fix typos in the Modules directory (GH-28761)
Christian Clauss committed
September 19, 2021
S
Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450)
Serhiy Storchaka committed
May 27, 2021
E
bpo-42972: Fully implement GC protocol for re types (GH-26368)
Erlend Egeberg Aasland committed
May 21, 2021
Z
bpo-40736: Improve the error message for re.search() TypeError (GH-23312)
Zackery Spytz committed
April 30, 2021
E
bpo-43916: Apply Py_TPFLAGS_DISALLOW_INSTANTIATION to selected types (GH-25748)
Erlend Egeberg Aasland committed
April 29, 2021
E
bpo-43908: Make re types immutable (GH-25697)
Erlend Egeberg Aasland committed
April 21, 2021
V
bpo-40137: Add pycore_moduleobject.h internal header (GH-25507)
Victor Stinner committed
December 1, 2020
V
bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)
Victor Stinner committed
V
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
Victor Stinner committed
November 20, 2020
E
bpo-1635741: Convert _sre types to heap types and establish module state (PEP 384) (GH-23393)
Erlend Egeberg Aasland committed
October 27, 2020
V
bpo-42161: Modules/ uses _PyLong_GetZero() and _PyLong_GetOne() (GH-22998)
Victor Stinner committed
June 10, 2020
V
bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781)
Victor Stinner committed
June 1, 2020
A
bpo-39943: Fix MSVC warnings in sre extension (GH-20508)
Ammar Askar 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
April 7, 2020
V
bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379)
Victor Stinner committed
G
bpo-39481: Implementation for PEP 585 (#18239)
Guido van Rossum committed
February 17, 2020
D
bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)
Dong-hee Na committed
February 11, 2020
P
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin committed
January 9, 2020
A
bpo-39271: Remove dead assignment from pattern_subx (GH-17915)
Alex Henrie 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
March 10, 2019
February 25, 2019
S
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka committed
February 18, 2019
A
bpo-34294: re module, fix wrong capturing groups in rare cases. (GH-11546)
animalize committed
November 27, 2018
S
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Serhiy Storchaka committed
September 12, 2018
S
Simplified implementation of _sre.ascii_iscased(). (GH-9097)
Sergey Fedoseev committed
September 11, 2018
S
bpo-34636: Use fast path for more chars in SRE category macros. (GH-9170)
Sergey Fedoseev committed
September 7, 2018
S
_sre.c: Removed unused SRE_IS_ALNUM macro (GH-9090)
Sergey Fedoseev committed
January 4, 2018
S
bpo-32308: Replace empty matches adjacent to a previous non-empty match in re.sub(). (#4846)
Serhiy Storchaka committed
December 4, 2017
S
bpo-25054, bpo-1647489: Added support of splitting on zerowidth patterns. (#4471)
Serhiy Storchaka committed
October 24, 2017
S
bpo-31690: Allow the inline flags "a", "L", and "u" to be used as group flags for RE. (#3885)
Serhiy Storchaka committed
October 4, 2017
S
bpo-30397: Add re.Pattern and re.Match. (#1646)
Serhiy Storchaka committed
May 9, 2017
S
bpo-30285: Optimize case-insensitive matching and searching (#1482)
Serhiy Storchaka committed
May 5, 2017
S
bpo-30277: Replace _sre.getlower() with _sre.ascii_tolower() and _sre.unicode_tolower(). (#1468)
Serhiy Storchaka committed
S
bpo-30215: Make re.compile() locale agnostic. (#1361)
Serhiy Storchaka committed
April 21, 2017
B
remove configure test for inline keyword (#1231)
Benjamin Peterson committed
April 16, 2017
S
bpo-10076: Compiled regular expression and match objects now are copyable. (#1000)
Serhiy Storchaka committed
S
bpo-28765: Use concrete types API in _sre.c. (#1009)
Serhiy Storchaka committed
March 30, 2017
S
bpo-29878: Add global instances of int for 0 and 1. (#852)
Serhiy Storchaka committed
February 4, 2017
S
Issue #29444: Fixed out-of-bounds buffer access in the group() method of
Serhiy Storchaka committed
S
Issue #29444: Fixed out-of-bounds buffer access in the group() method of
Serhiy Storchaka committed
S
Issue #29444: Fixed out-of-bounds buffer access in the group() method of
Serhiy Storchaka committed
January 23, 2017
S
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka committed
January 13, 2017
S
Issue #29195: Removed support of deprecated undocumented keyword arguments
Serhiy Storchaka committed
December 5, 2016
V
Issue #28858: Remove _PyObject_CallArg1() macro
Victor Stinner committed
November 22, 2016
V
Issue #28765: _sre.compile() now checks the type of groupindex and indexgroup
Victor Stinner committed
V
Issue #28727: Optimize pattern_richcompare() for a==a
Victor Stinner committed
V
Issue #28727: Fix typo in pattern_richcompare()
Victor Stinner committed
November 21, 2016
V
Implement rich comparison for _sre.SRE_Pattern
Victor Stinner committed