summaryrefslogtreecommitdiff
path: root/Modules/_sre.c
Commit message (Expand)AuthorAgeFilesLines
* [3.9] Fix typos in the Modules directory (GH-28761). (GH-28791)Christian Clauss2021-10-071-1/+1
* bpo-39943: Fix MSVC warnings in sre extension (GH-20508)Miss Islington (bot)2021-03-141-2/+6
* bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner2020-04-151-1/+1
* bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data....Serhiy Storchaka2020-04-111-6/+6
* bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379)Victor Stinner2020-04-081-4/+4
* bpo-39481: Implementation for PEP 585 (#18239)Guido van Rossum2020-04-071-0/+4
* bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)Dong-hee Na2020-02-171-1/+1
* bpo-39245: Switch to public API for Vectorcall (GH-18460)Petr Viktorin2020-02-111-1/+1
* bpo-39271: Remove dead assignment from pattern_subx (GH-17915)Alex Henrie2020-01-091-1/+0
* bpo-37483: add _PyObject_CallOneArg() function (#14558)Jeroen Demeyer2019-07-041-1/+1
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-301-6/+6
* bpo-36251: Fix format strings used in match_repr() and stdprinter_repr(). (GH...sth2019-03-101-1/+1
* bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)Serhiy Storchaka2019-02-251-32/+26
* bpo-34294: re module, fix wrong capturing groups in rare cases. (GH-11546)animalize2019-02-181-1/+1
* bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Serhiy Storchaka2018-11-271-4/+4
* Simplified implementation of _sre.ascii_iscased(). (GH-9097)Sergey Fedoseev2018-09-121-6/+1
* bpo-34636: Use fast path for more chars in SRE category macros. (GH-9170)Sergey Fedoseev2018-09-111-3/+3
* _sre.c: Removed unused SRE_IS_ALNUM macro (GH-9090)Sergey Fedoseev2018-09-071-2/+0
* bpo-32308: Replace empty matches adjacent to a previous non-empty match in re...Serhiy Storchaka2018-01-041-2/+2
* bpo-25054, bpo-1647489: Added support of splitting on zerowidth patterns. (#4...Serhiy Storchaka2017-12-041-55/+22
* bpo-31690: Allow the inline flags "a", "L", and "u" to be used as group flags...Serhiy Storchaka2017-10-241-18/+19
* bpo-30397: Add re.Pattern and re.Match. (#1646)Serhiy Storchaka2017-10-041-16/+25
* bpo-30285: Optimize case-insensitive matching and searching (#1482)Serhiy Storchaka2017-05-091-0/+34
* bpo-30277: Replace _sre.getlower() with _sre.ascii_tolower() and _sre.unicode...Serhiy Storchaka2017-05-051-9/+20
* bpo-30215: Make re.compile() locale agnostic. (#1361)Serhiy Storchaka2017-05-051-0/+3
* remove configure test for inline keyword (#1231)Benjamin Peterson2017-04-201-3/+1
* bpo-10076: Compiled regular expression and match objects now are copyable. (#...Serhiy Storchaka2017-04-161-117/+14
* bpo-28765: Use concrete types API in _sre.c. (#1009)Serhiy Storchaka2017-04-161-37/+37
* bpo-29878: Add global instances of int for 0 and 1. (#852)Serhiy Storchaka2017-03-301-1/+1
* Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-041-2/+7
|\
| * Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-041-2/+7
| |\
| | * Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-041-2/+7
* | | Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-8/+4
* | | Issue #29195: Removed support of deprecated undocumented keyword argumentsSerhiy Storchaka2017-01-131-72/+15
* | | Issue #28858: Remove _PyObject_CallArg1() macroVictor Stinner2016-12-051-1/+1
* | | Issue #28765: _sre.compile() now checks the type of groupindex and indexgroupVictor Stinner2016-11-221-3/+3
|/ /
* | Issue #28727: Optimize pattern_richcompare() for a==aVictor Stinner2016-11-221-0/+6
* | Issue #28727: Fix typo in pattern_richcompare()Victor Stinner2016-11-221-1/+1
* | Implement rich comparison for _sre.SRE_PatternVictor Stinner2016-11-211-6/+67
* | Issue 24454: Removed unused match_getitem_doc.Eric V. Smith2016-09-111-3/+0
* | Issue 24454: Added whatsnew entry, removed __getitem__ from match_methods. Th...Eric V. Smith2016-09-111-1/+0
* | Issue 24454: Improve the usability of the re match object named group APIEric V. Smith2016-09-111-1/+18
* | replace Py_(u)intptr_t with the c99 standard typesBenjamin Peterson2016-09-061-7/+7
* | Rename _PyObject_FastCall() to _PyObject_FastCallDict()Victor Stinner2016-08-221-1/+1
* | pattern_subx() now uses fast callVictor Stinner2016-08-201-8/+1
* | merge 3.5 (#27774)Benjamin Peterson2016-08-151-3/+1
|\ \ | |/
| * merge 3.4 (#27774)Benjamin Peterson2016-08-151-3/+1
| |\
| | * merge 3.3 (#27774)Benjamin Peterson2016-08-151-3/+1
| | |\
| | | * do not decref value borrowed from list (closes #27774)Benjamin Peterson2016-08-151-3/+1
* | | | - Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-071-6/+6
|\ \ \ \ | |/ / /