COMMITS
/ Modules/sre.h April 11, 2020
S
bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345)
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
November 22, 2016
V
Issue #28765: _sre.compile() now checks the type of groupindex and indexgroup
Victor Stinner committed
October 31, 2014
S
Issue #17381: Fixed handling of case-insensitive ranges in regular expressions.
Serhiy Storchaka committed
September 29, 2014
S
Issue #22437: Number of capturing groups in regular expression is no longer
Serhiy Storchaka committed
May 14, 2014
S
Issue #20998: Fixed re.fullmatch() of repeated single character pattern
Serhiy Storchaka committed
November 23, 2013
S
Issue #16203: Add re.fullmatch() function and regex.fullmatch() method,
Serhiy Storchaka committed
October 26, 2013
S
Issue #18685: Restore re performance to pre-PEP 393 levels.
Serhiy Storchaka committed
October 13, 2013
G
Back out accidentally pushed changeset b51218966201.
Georg Brandl committed
G
Add re.fullmatch() function and regex.fullmatch() method, which anchor the
Georg Brandl committed
August 3, 2013
S
Issue #17998: Fix an internal error in regular expression engine.
Serhiy Storchaka committed
February 16, 2013
S
Issue #13169: The maximal repetition number in a regular expression has been
Serhiy Storchaka committed
S
Issue #13169: The maximal repetition number in a regular expression has been
Serhiy Storchaka committed
November 20, 2012
A
Issue #1160: Fix compiling large regular expressions on UCS2 builds.
Antoine Pitrou committed
June 23, 2012
A
Fix test_re failure under Windows.
Antoine Pitrou committed
March 7, 2012
B
merge 3.2 (#14212)
Benjamin Peterson committed
B
keep the buffer object around while we're using it (closes #14212)
Benjamin Peterson committed
September 28, 2011
M
Implement PEP 393.
Martin v. Löwis committed
August 19, 2008
A
#2834: Change re module semantics, so that str and bytes mixing is forbidden,
Antoine Pitrou committed
August 11, 2006
T
Merged revisions 46753-51188 via svnmerge from
Thomas Wouters committed
May 31, 2004
R
Add weakref support to sockets and re pattern objects.
Raymond Hettinger committed
May 7, 2004
M
Fix _sre.CODESIZE on 64-bit machines in UCS-4 mode. Fixes #931848.
Martin v. Löwis committed
February 14, 2004
G
- Fixing annoying warnings.
Gustavo Niemeyer committed
October 17, 2003
G
Implemented non-recursive SRE matching.
Gustavo Niemeyer committed
March 18, 2002
N
Remove extraneous #define as per effbot's instructions in:
Neal Norwitz committed
July 2, 2001
F
merged with pythonware's SRE 2.1.1 codebase
Fredrik Lundh committed
June 27, 2001
F
use Py_UNICODE_WIDE instead of USE_UCS4_STORAGE and Py_UNICODE_SIZE
Fredrik Lundh committed
June 26, 2001
F
experimental UCS-4 support: added USE_UCS4_STORAGE define to
Fredrik Lundh committed
August 3, 2000
F
-- added recursion limit (currently ~10,000 levels)
Fredrik Lundh committed
August 1, 2000
F
-- fixed width calculations for alternations
Fredrik Lundh committed
F
SRE 0.9.8: passes the entire test suite
Fredrik Lundh committed
July 23, 2000
F
-- SRE 0.9.6 sync. this includes:
Fredrik Lundh committed
July 3, 2000
F
- fixed grouping error bug
Fredrik Lundh committed
F
- added lookbehind support (?<=pattern), (?<!pattern).
Fredrik Lundh committed
July 2, 2000
F
- experimental: added two new attributes to the match object:
Fredrik Lundh committed
F
- actually enabled charset anchors in the engine (still not
Fredrik Lundh committed
June 29, 2000
F
- fixed another split problem
Fredrik Lundh committed
F
- fixed split
Fredrik Lundh committed
F
- renamed "tolower" hook (it happened to work with
Fredrik Lundh committed
F
towards 1.6b1
Fredrik Lundh committed
June 1, 2000
J
Fredrik Lundh: here's the 96.6% version of SRE
Jeremy Hylton committed
March 31, 2000
G
Adding Fredrik Lundh's _sre.c module and its header files.
Guido van Rossum committed