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
...
|
*
|
|
Issue #18684: Fixed reading out of the buffer in the re module.
Serhiy Storchaka
2015-07-06
1
-5/+21
|
|
\
\
\
|
|
|
/
/
|
|
*
|
Issue #18684: Fixed reading out of the buffer in the re module.
Serhiy Storchaka
2015-07-06
1
-5/+21
*
|
|
|
Merge 3.5 (Issue #19235)
Yury Selivanov
2015-07-03
1
-1/+2
|
\
\
\
\
|
|
/
/
/
|
*
|
|
Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.
Yury Selivanov
2015-07-03
1
-1/+2
*
|
|
|
Issue #24426: Fast searching optimization in regular expressions now works
Serhiy Storchaka
2015-06-21
1
-3/+0
|
/
/
/
*
|
|
Fix Windows build breakage from checkins on Issues #20148 and #20168.
Larry Hastings
2015-05-03
1
-141/+140
*
|
|
Issue #20148: Converted the _sre module to Argument Clinic.
Serhiy Storchaka
2015-05-03
1
-311/+391
*
|
|
Issue #14260: The groupindex attribute of regular expression pattern object
Serhiy Storchaka
2015-03-29
1
-1/+14
*
|
|
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
-0/+13
*
|
|
Issue #17381: Fixed handling of case-insensitive ranges in regular expressions.
Serhiy Storchaka
2014-10-31
1
-3/+25
*
|
|
Issue #22584: Got rid of character tables in _sre.c and use standard macros
Serhiy Storchaka
2014-10-10
1
-34/+6
*
|
|
Issue #22437: Number of capturing groups in regular expression is no longer
Serhiy Storchaka
2014-09-29
1
-14/+37
*
|
|
Issue #22156: Fix some "comparison between signed and unsigned integers"
Victor Stinner
2014-08-15
1
-1/+1
|
/
/
*
|
Issue #20998: Fixed re.fullmatch() of repeated single character pattern
Serhiy Storchaka
2014-05-14
1
-8/+7
*
|
Issue #20283: RE pattern methods now accept the string keyword parameters
Serhiy Storchaka
2014-03-06
1
-64/+79
|
\
\
|
|
/
|
*
Issue #20283: RE pattern methods now accept the string keyword parameters
Serhiy Storchaka
2014-03-06
1
-20/+64
*
|
Issue #20530: Argument Clinic's signature format has been revised again.
Larry Hastings
2014-02-09
1
-2/+4
*
|
Issue #20326: Argument Clinic now uses a simple, unique signature to
Larry Hastings
2014-01-28
1
-2/+2
*
|
Issue #20390: Small fixes and improvements for Argument Clinic.
Larry Hastings
2014-01-26
1
-2/+1
*
|
Issue #20189: Four additional builtin types (PyTypeObject,
Larry Hastings
2014-01-24
1
-4/+4
*
|
Issue #19723: Missed one conversion to the new Argument Clinic syntax.
Larry Hastings
2014-01-07
1
-3/+3
*
|
Issue #20144: Argument Clinic now supports simple constants as parameter
Larry Hastings
2014-01-07
1
-18/+50
*
|
Issue #16203: Add re.fullmatch() function and regex.fullmatch() method,
Serhiy Storchaka
2013-11-23
1
-18/+59
*
|
Issue #13592: Improved the repr for regular expression pattern objects.
Serhiy Storchaka
2013-11-23
1
-1/+81
*
|
Fix compiler warning (especially on Windows 64-bit): don't truncate Py_ssize_t
Victor Stinner
2013-11-15
1
-4/+4
*
|
Issue #19405: Fixed outdated comments in the _sre module.
Serhiy Storchaka
2013-10-27
1
-2/+1
|
\
\
|
|
/
|
*
Issue #19405: Fixed outdated comments in the _sre module.
Serhiy Storchaka
2013-10-27
1
-2/+1
*
|
Issue #18685: Extract template part of _sre.c into separated sre_lib.h file.
Serhiy Storchaka
2013-10-26
1
-1339/+3
*
|
Issue #18685: Restore re performance to pre-PEP 393 levels.
Serhiy Storchaka
2013-10-26
1
-378/+322
*
|
Issue #19327: Fixed the working of regular expressions with too big charset.
Serhiy Storchaka
2013-10-24
1
-2/+2
|
\
\
|
|
/
|
*
Issue #19327: Fixed the working of regular expressions with too big charset.
Serhiy Storchaka
2013-10-24
1
-2/+2
*
|
Issue #17087: Improved the repr for regular expression match objects.
Serhiy Storchaka
2013-10-20
1
-1/+17
*
|
Fix a refleak in _sre
Brett Cannon
2013-10-18
1
-0/+1
*
|
Issue #18468: The re.split, re.findall, and re.sub functions and the group()
Serhiy Storchaka
2013-10-16
1
-51/+59
*
|
Back out accidentally pushed changeset b51218966201.
Georg Brandl
2013-10-13
1
-86/+34
*
|
Add re.fullmatch() function and regex.fullmatch() method, which anchor the
Georg Brandl
2013-10-13
1
-34/+86
*
|
Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output in
Serhiy Storchaka
2013-09-05
1
-14/+23
|
\
\
|
|
/
|
*
Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output in
Serhiy Storchaka
2013-09-05
1
-14/+23
*
|
Get rid of signed/unsigned comparaison in _sre.c
Victor Stinner
2013-08-28
1
-11/+11
*
|
Issue #18701: Remove support of old CPython versions (<3.0) from C code.
Serhiy Storchaka
2013-08-16
1
-17/+0
*
|
Issue #17998: Fix an internal error in regular expression engine.
Serhiy Storchaka
2013-08-03
1
-6/+6
|
\
\
|
|
/
|
*
Issue #17998: Fix an internal error in regular expression engine.
Serhiy Storchaka
2013-08-03
1
-6/+6
*
|
Issue #17016: Get rid of possible pointer wraparounds and integer overflows
Serhiy Storchaka
2013-04-13
1
-11/+11
|
\
\
|
|
/
|
*
Issue #17016: Get rid of possible pointer wraparounds and integer overflows
Serhiy Storchaka
2013-04-13
1
-11/+11
*
|
Issue #9669: Protect re against infinite loops on zero-width matching in
Serhiy Storchaka
2013-02-16
1
-2/+7
|
\
\
|
|
/
|
*
Issue #9669: Protect re against infinite loops on zero-width matching in
Serhiy Storchaka
2013-02-16
1
-2/+7
|
|
\
|
|
*
Issue #9669: Protect re against infinite loops on zero-width matching in
Serhiy Storchaka
2013-02-16
1
-2/+7
*
|
|
Issue #13169: The maximal repetition number in a regular expression has been
Serhiy Storchaka
2013-02-16
1
-6/+12
|
\
\
\
|
|
/
/
|
*
|
Issue #13169: The maximal repetition number in a regular expression has been
Serhiy Storchaka
2013-02-16
1
-6/+12
|
|
\
\
|
|
|
/
[prev]
[next]