GitWeb
Get Gentoo!
gentoo.org sites
gentoo.org
Wiki
Bugs
Forums
Packages
Planet
Archives
Sources
Infra Status
Home
Gentoo Repository
Repositories
Projects
Developer Overlays
User Overlays
Data
Websites
index
:
fork/cpython.git
3.6
3.7
3.8
3.9
backport-e35ca41-3.11
gentoo
gentoo-2.7-vanilla
main
master
Gentoo fork of Python
Python project <python@gentoo.org>
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Lib
/
sre_compile.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Simplify flags checks in sre_compile.py. (GH-9718)
Serhiy Storchaka
2018-10-05
1
-5
/
+5
*
bpo-34681: Rename class Pattern in sre_parse to State. (GH-9310)
Serhiy Storchaka
2018-09-18
1
-5
/
+5
*
bpo-31690: Allow the inline flags "a", "L", and "u" to be used as group flags...
Serhiy Storchaka
2017-10-24
1
-21
/
+38
*
bpo-30299: Display a bytecode when compile a regex in debug mode. (#1491)
Serhiy Storchaka
2017-05-14
1
-1
/
+147
*
bpo-30340: Enhanced regular expressions optimization. (#1542)
Serhiy Storchaka
2017-05-14
1
-5
/
+10
*
bpo-30285: Optimize case-insensitive matching and searching (#1482)
Serhiy Storchaka
2017-05-09
1
-69
/
+102
*
bpo-30277: Replace _sre.getlower() with _sre.ascii_tolower() and _sre.unicode...
Serhiy Storchaka
2017-05-05
1
-13
/
+10
*
bpo-30215: Make re.compile() locale agnostic. (#1361)
Serhiy Storchaka
2017-05-05
1
-9
/
+15
*
Issue #28765: _sre.compile() now checks the type of groupindex and indexgroup
Victor Stinner
2016-11-22
1
-1
/
+1
*
Issue #433028: Added support of modifier spans in regular expressions.
Serhiy Storchaka
2016-09-10
1
-31
/
+38
*
Issue #24426: Fast searching optimization in regular expressions now works
Serhiy Storchaka
2015-06-21
1
-49
/
+68
*
Issue #22364: Improved some re error messages using regex for hints.
Serhiy Storchaka
2015-03-25
1
-3
/
+3
*
Issue #22818: Splitting on a pattern that could match an empty string now
Serhiy Storchaka
2015-02-03
1
-5
/
+5
*
Minor code clean up and improvements in the re module.
Serhiy Storchaka
2014-11-11
1
-10
/
+6
*
Got rid of the array module dependency in the re module.
Serhiy Storchaka
2014-11-10
1
-2
/
+1
|
\
|
*
Got rid of the array module dependency in the re module.
Serhiy Storchaka
2014-11-10
1
-2
/
+1
*
|
Issue #12728: Different Unicode characters having the same uppercase but
Serhiy Storchaka
2014-11-10
1
-10
/
+80
|
\
|
|
*
Issue #12728: Different Unicode characters having the same uppercase but
Serhiy Storchaka
2014-11-10
1
-11
/
+81
|
*
Issue #17381: Fixed handling of case-insensitive ranges in regular expressions.
Serhiy Storchaka
2014-10-31
1
-15
/
+49
*
|
Merge heads
Serhiy Storchaka
2014-11-10
1
-4
/
+4
|
\
\
|
*
|
Issue #22823: Use set literals instead of creating a set from a list
Raymond Hettinger
2014-11-09
1
-4
/
+4
*
|
|
Issue #22434: Constants in sre_constants are now named constants (enum-like).
Serhiy Storchaka
2014-11-09
1
-38
/
+37
|
/
/
*
|
Issue #17381: Fixed handling of case-insensitive ranges in regular expressions.
Serhiy Storchaka
2014-10-31
1
-14
/
+21
*
|
Issue #22437: Number of capturing groups in regular expression is no longer
Serhiy Storchaka
2014-09-29
1
-6
/
+0
|
/
*
Issue #20976: pyflakes: Remove unused imports
Victor Stinner
2014-03-20
1
-1
/
+1
*
Issue #19329: Optimized compiling charsets in regular expressions.
Serhiy Storchaka
2013-10-27
1
-135
/
+99
*
Issue #19405: Fixed outdated comments in the _sre module.
Serhiy Storchaka
2013-10-27
1
-5
/
+5
|
\
|
*
Issue #19405: Fixed outdated comments in the _sre module.
Serhiy Storchaka
2013-10-27
1
-5
/
+5
*
|
Issue #19387: explain and test the sre overlap table
Antoine Pitrou
2013-10-25
1
-6
/
+22
*
|
Issue #19327: Fixed the working of regular expressions with too big charset.
Serhiy Storchaka
2013-10-24
1
-1
/
+1
|
\
|
|
*
Issue #19327: Fixed the working of regular expressions with too big charset.
Serhiy Storchaka
2013-10-24
1
-1
/
+1
|
*
Issue #18050: Fixed an incompatibility of the re module with Python 3.3.0
Serhiy Storchaka
2013-09-20
1
-1
/
+0
*
|
Issue #2537: Remove breaked check which prevented valid regular expressions.
Serhiy Storchaka
2013-08-19
1
-2
/
+0
|
\
|
|
*
Issue #2537: Remove breaked check which prevented valid regular expressions.
Serhiy Storchaka
2013-08-19
1
-2
/
+0
*
|
Issue #18647: Temporary disable the "nothing to repeat" check to make buildbo...
Serhiy Storchaka
2013-08-03
1
-2
/
+2
|
\
|
|
*
Issue #18647: Temporary disable the "nothing to repeat" check to make buildbo...
Serhiy Storchaka
2013-08-03
1
-2
/
+2
*
|
Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)
Brett Cannon
2013-07-04
1
-1
/
+1
*
|
Issue #18200: Update the stdlib (except tests) to use
Brett Cannon
2013-06-13
1
-1
/
+1
*
|
Issue #17516: remove dead code
Victor Stinner
2013-03-26
1
-7
/
+0
|
/
*
Issue #13169: The maximal repetition number in a regular expression has been
Serhiy Storchaka
2013-02-16
1
-0
/
+1
|
\
|
*
Issue #13169: The maximal repetition number in a regular expression has been
Serhiy Storchaka
2013-02-16
1
-0
/
+1
*
|
#13054: fix usage of sys.maxunicode after PEP-393.
Ezio Melotti
2011-10-04
1
-1
/
+3
|
/
*
Issue #8990: array.fromstring() and array.tostring() get renamed to
Antoine Pitrou
2010-09-01
1
-1
/
+1
*
Merged revisions 66894 via svnmerge from
Benjamin Peterson
2008-10-14
1
-6
/
+0
*
Merged revisions 62194,62197-62198,62204-62205,62214,62219-62221,62227,62229-...
Christian Heimes
2008-04-09
1
-2
/
+1
*
Fix 're' to work on bytes. It could do with a few more tests, though.
Thomas Wouters
2008-03-18
1
-1
/
+1
*
Merged revisions 59666-59679 via svnmerge from
Christian Heimes
2008-01-03
1
-1
/
+1
*
Patch# 1258 by Christian Heimes: kill basestring.
Guido van Rossum
2007-10-16
1
-1
/
+1
*
Raise statement normalization in Lib/.
Collin Winter
2007-08-30
1
-5
/
+5
*
Merged revisions 56154-56264 via svnmerge from
Guido van Rossum
2007-07-11
1
-1
/
+1
[next]