summaryrefslogtreecommitdiff
path: root/Lib/sre_compile.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-31690: Allow the inline flags "a", "L", and "u" to be used as group flags...Serhiy Storchaka2017-10-241-21/+38
* bpo-30299: Display a bytecode when compile a regex in debug mode. (#1491)Serhiy Storchaka2017-05-141-1/+147
* bpo-30340: Enhanced regular expressions optimization. (#1542)Serhiy Storchaka2017-05-141-5/+10
* bpo-30285: Optimize case-insensitive matching and searching (#1482)Serhiy Storchaka2017-05-091-69/+102
* bpo-30277: Replace _sre.getlower() with _sre.ascii_tolower() and _sre.unicode...Serhiy Storchaka2017-05-051-13/+10
* bpo-30215: Make re.compile() locale agnostic. (#1361)Serhiy Storchaka2017-05-051-9/+15
* Issue #28765: _sre.compile() now checks the type of groupindex and indexgroupVictor Stinner2016-11-221-1/+1
* Issue #433028: Added support of modifier spans in regular expressions.Serhiy Storchaka2016-09-101-31/+38
* Issue #24426: Fast searching optimization in regular expressions now worksSerhiy Storchaka2015-06-211-49/+68
* Issue #22364: Improved some re error messages using regex for hints.Serhiy Storchaka2015-03-251-3/+3
* Issue #22818: Splitting on a pattern that could match an empty string nowSerhiy Storchaka2015-02-031-5/+5
* Minor code clean up and improvements in the re module.Serhiy Storchaka2014-11-111-10/+6
* Got rid of the array module dependency in the re module.Serhiy Storchaka2014-11-101-2/+1
|\
| * Got rid of the array module dependency in the re module.Serhiy Storchaka2014-11-101-2/+1
* | Issue #12728: Different Unicode characters having the same uppercase butSerhiy Storchaka2014-11-101-10/+80
|\ \ | |/
| * Issue #12728: Different Unicode characters having the same uppercase butSerhiy Storchaka2014-11-101-11/+81
| * Issue #17381: Fixed handling of case-insensitive ranges in regular expressions.Serhiy Storchaka2014-10-311-15/+49
* | Merge headsSerhiy Storchaka2014-11-101-4/+4
|\ \
| * | Issue #22823: Use set literals instead of creating a set from a listRaymond Hettinger2014-11-091-4/+4
* | | Issue #22434: Constants in sre_constants are now named constants (enum-like).Serhiy Storchaka2014-11-091-38/+37
|/ /
* | Issue #17381: Fixed handling of case-insensitive ranges in regular expressions.Serhiy Storchaka2014-10-311-14/+21
* | Issue #22437: Number of capturing groups in regular expression is no longerSerhiy Storchaka2014-09-291-6/+0
|/
* Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-201-1/+1
* Issue #19329: Optimized compiling charsets in regular expressions.Serhiy Storchaka2013-10-271-135/+99
* Issue #19405: Fixed outdated comments in the _sre module.Serhiy Storchaka2013-10-271-5/+5
|\
| * Issue #19405: Fixed outdated comments in the _sre module.Serhiy Storchaka2013-10-271-5/+5
* | Issue #19387: explain and test the sre overlap tableAntoine Pitrou2013-10-251-6/+22
* | Issue #19327: Fixed the working of regular expressions with too big charset.Serhiy Storchaka2013-10-241-1/+1
|\ \ | |/
| * Issue #19327: Fixed the working of regular expressions with too big charset.Serhiy Storchaka2013-10-241-1/+1
| * Issue #18050: Fixed an incompatibility of the re module with Python 3.3.0Serhiy Storchaka2013-09-201-1/+0
* | Issue #2537: Remove breaked check which prevented valid regular expressions.Serhiy Storchaka2013-08-191-2/+0
|\ \ | |/
| * Issue #2537: Remove breaked check which prevented valid regular expressions.Serhiy Storchaka2013-08-191-2/+0
* | Issue #18647: Temporary disable the "nothing to repeat" check to make buildbo...Serhiy Storchaka2013-08-031-2/+2
|\ \ | |/
| * Issue #18647: Temporary disable the "nothing to repeat" check to make buildbo...Serhiy Storchaka2013-08-031-2/+2
* | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-1/+1
* | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-1/+1
* | Issue #17516: remove dead codeVictor Stinner2013-03-261-7/+0
|/
* Issue #13169: The maximal repetition number in a regular expression has beenSerhiy Storchaka2013-02-161-0/+1
|\
| * Issue #13169: The maximal repetition number in a regular expression has beenSerhiy Storchaka2013-02-161-0/+1
* | #13054: fix usage of sys.maxunicode after PEP-393.Ezio Melotti2011-10-041-1/+3
|/
* Issue #8990: array.fromstring() and array.tostring() get renamed toAntoine Pitrou2010-09-011-1/+1
* Merged revisions 66894 via svnmerge fromBenjamin Peterson2008-10-141-6/+0
* Merged revisions 62194,62197-62198,62204-62205,62214,62219-62221,62227,62229-...Christian Heimes2008-04-091-2/+1
* Fix 're' to work on bytes. It could do with a few more tests, though.Thomas Wouters2008-03-181-1/+1
* Merged revisions 59666-59679 via svnmerge fromChristian Heimes2008-01-031-1/+1
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-1/+1
* Raise statement normalization in Lib/.Collin Winter2007-08-301-5/+5
* Merged revisions 56154-56264 via svnmerge fromGuido van Rossum2007-07-111-1/+1
* Creating an array with a bytes object as initializerGuido van Rossum2007-07-031-0/+1
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-4/+4