index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
_sre.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix typos in the Modules directory (GH-28761)
Christian Clauss
2021-10-07
1
-1/+1
*
Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450)
Serhiy Storchaka
2021-09-19
1
-2/+2
*
bpo-42972: Fully implement GC protocol for re types (GH-26368)
Erlend Egeberg Aasland
2021-05-27
1
-19/+81
*
bpo-40736: Improve the error message for re.search() TypeError (GH-23312)
Zackery Spytz
2021-05-21
1
-1/+2
*
bpo-43916: Apply Py_TPFLAGS_DISALLOW_INSTANTIATION to selected types (GH-25748)
Erlend Egeberg Aasland
2021-04-30
1
-3/+6
*
bpo-43908: Make re types immutable (GH-25697)
Erlend Egeberg Aasland
2021-04-29
1
-3/+3
*
bpo-40137: Add pycore_moduleobject.h internal header (GH-25507)
Victor Stinner
2021-04-21
1
-1/+2
*
bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)
Victor Stinner
2020-12-01
1
-3/+3
*
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
Victor Stinner
2020-12-01
1
-4/+4
*
bpo-1635741: Convert _sre types to heap types and establish module state (PEP...
Erlend Egeberg Aasland
2020-11-20
1
-198/+275
*
bpo-42161: Modules/ uses _PyLong_GetZero() and _PyLong_GetOne() (GH-22998)
Victor Stinner
2020-10-27
1
-1/+2
*
bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781)
Victor Stinner
2020-06-10
1
-1/+1
*
bpo-39943: Fix MSVC warnings in sre extension (GH-20508)
Ammar Askar
2020-06-01
1
-2/+6
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-1/+1
*
bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data....
Serhiy Storchaka
2020-04-11
1
-6/+6
*
bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379)
Victor Stinner
2020-04-07
1
-4/+4
*
bpo-39481: Implementation for PEP 585 (#18239)
Guido van Rossum
2020-04-07
1
-0/+4
*
bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)
Dong-hee Na
2020-02-17
1
-1/+1
*
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin
2020-02-11
1
-1/+1
*
bpo-39271: Remove dead assignment from pattern_subx (GH-17915)
Alex Henrie
2020-01-09
1
-1/+0
*
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer
2019-07-04
1
-1/+1
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-6/+6
*
bpo-36251: Fix format strings used in match_repr() and stdprinter_repr(). (GH...
sth
2019-03-10
1
-1/+1
*
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka
2019-02-25
1
-32/+26
*
bpo-34294: re module, fix wrong capturing groups in rare cases. (GH-11546)
animalize
2019-02-18
1
-1/+1
*
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Serhiy Storchaka
2018-11-27
1
-4/+4
*
Simplified implementation of _sre.ascii_iscased(). (GH-9097)
Sergey Fedoseev
2018-09-12
1
-6/+1
*
bpo-34636: Use fast path for more chars in SRE category macros. (GH-9170)
Sergey Fedoseev
2018-09-11
1
-3/+3
*
_sre.c: Removed unused SRE_IS_ALNUM macro (GH-9090)
Sergey Fedoseev
2018-09-07
1
-2/+0
*
bpo-32308: Replace empty matches adjacent to a previous non-empty match in re...
Serhiy Storchaka
2018-01-04
1
-2/+2
*
bpo-25054, bpo-1647489: Added support of splitting on zerowidth patterns. (#4...
Serhiy Storchaka
2017-12-04
1
-55/+22
*
bpo-31690: Allow the inline flags "a", "L", and "u" to be used as group flags...
Serhiy Storchaka
2017-10-24
1
-18/+19
*
bpo-30397: Add re.Pattern and re.Match. (#1646)
Serhiy Storchaka
2017-10-04
1
-16/+25
*
bpo-30285: Optimize case-insensitive matching and searching (#1482)
Serhiy Storchaka
2017-05-09
1
-0/+34
*
bpo-30277: Replace _sre.getlower() with _sre.ascii_tolower() and _sre.unicode...
Serhiy Storchaka
2017-05-05
1
-9/+20
*
bpo-30215: Make re.compile() locale agnostic. (#1361)
Serhiy Storchaka
2017-05-05
1
-0/+3
*
remove configure test for inline keyword (#1231)
Benjamin Peterson
2017-04-21
1
-3/+1
*
bpo-10076: Compiled regular expression and match objects now are copyable. (#...
Serhiy Storchaka
2017-04-16
1
-117/+14
*
bpo-28765: Use concrete types API in _sre.c. (#1009)
Serhiy Storchaka
2017-04-16
1
-37/+37
*
bpo-29878: Add global instances of int for 0 and 1. (#852)
Serhiy Storchaka
2017-03-30
1
-1/+1
*
Issue #29444: Fixed out-of-bounds buffer access in the group() method of
Serhiy Storchaka
2017-02-04
1
-2/+7
|
\
|
*
Issue #29444: Fixed out-of-bounds buffer access in the group() method of
Serhiy Storchaka
2017-02-04
1
-2/+7
|
|
\
|
|
*
Issue #29444: Fixed out-of-bounds buffer access in the group() method of
Serhiy Storchaka
2017-02-04
1
-2/+7
*
|
|
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka
2017-01-23
1
-8/+4
*
|
|
Issue #29195: Removed support of deprecated undocumented keyword arguments
Serhiy Storchaka
2017-01-13
1
-72/+15
*
|
|
Issue #28858: Remove _PyObject_CallArg1() macro
Victor Stinner
2016-12-05
1
-1/+1
*
|
|
Issue #28765: _sre.compile() now checks the type of groupindex and indexgroup
Victor Stinner
2016-11-22
1
-3/+3
|
/
/
*
|
Issue #28727: Optimize pattern_richcompare() for a==a
Victor Stinner
2016-11-22
1
-0/+6
*
|
Issue #28727: Fix typo in pattern_richcompare()
Victor Stinner
2016-11-22
1
-1/+1
*
|
Implement rich comparison for _sre.SRE_Pattern
Victor Stinner
2016-11-21
1
-6/+67
[next]