summaryrefslogtreecommitdiffstats
path: root/Modules/_sre.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #20390: Small fixes and improvements for Argument Clinic.Larry Hastings2014-01-261-2/+1
* Issue #20189: Four additional builtin types (PyTypeObject,Larry Hastings2014-01-241-4/+4
* Issue #19723: Missed one conversion to the new Argument Clinic syntax.Larry Hastings2014-01-071-3/+3
* Issue #20144: Argument Clinic now supports simple constants as parameterLarry Hastings2014-01-071-18/+50
* Issue #16203: Add re.fullmatch() function and regex.fullmatch() method,Serhiy Storchaka2013-11-231-18/+59
* Issue #13592: Improved the repr for regular expression pattern objects.Serhiy Storchaka2013-11-231-1/+81
* Fix compiler warning (especially on Windows 64-bit): don't truncate Py_ssize_tVictor Stinner2013-11-151-4/+4
* Issue #19405: Fixed outdated comments in the _sre module.Serhiy Storchaka2013-10-271-2/+1
|\
| * Issue #19405: Fixed outdated comments in the _sre module.Serhiy Storchaka2013-10-271-2/+1
* | Issue #18685: Extract template part of _sre.c into separated sre_lib.h file.Serhiy Storchaka2013-10-261-1339/+3
* | Issue #18685: Restore re performance to pre-PEP 393 levels.Serhiy Storchaka2013-10-261-378/+322
* | Issue #19327: Fixed the working of regular expressions with too big charset.Serhiy Storchaka2013-10-241-2/+2
|\ \ | |/
| * Issue #19327: Fixed the working of regular expressions with too big charset.Serhiy Storchaka2013-10-241-2/+2
* | Issue #17087: Improved the repr for regular expression match objects.Serhiy Storchaka2013-10-201-1/+17
* | Fix a refleak in _sreBrett Cannon2013-10-181-0/+1
* | Issue #18468: The re.split, re.findall, and re.sub functions and the group()Serhiy Storchaka2013-10-161-51/+59
* | Back out accidentally pushed changeset b51218966201.Georg Brandl2013-10-131-86/+34
* | Add re.fullmatch() function and regex.fullmatch() method, which anchor theGeorg Brandl2013-10-131-34/+86
* | Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output inSerhiy Storchaka2013-09-051-14/+23
|\ \ | |/
| * Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output inSerhiy Storchaka2013-09-051-14/+23
* | Get rid of signed/unsigned comparaison in _sre.cVictor Stinner2013-08-281-11/+11
* | Issue #18701: Remove support of old CPython versions (<3.0) from C code.Serhiy Storchaka2013-08-161-17/+0
* | Issue #17998: Fix an internal error in regular expression engine.Serhiy Storchaka2013-08-031-6/+6
|\ \ | |/
| * Issue #17998: Fix an internal error in regular expression engine.Serhiy Storchaka2013-08-031-6/+6
* | Issue #17016: Get rid of possible pointer wraparounds and integer overflowsSerhiy Storchaka2013-04-131-11/+11
|\ \ | |/
| * Issue #17016: Get rid of possible pointer wraparounds and integer overflowsSerhiy Storchaka2013-04-131-11/+11
* | Issue #9669: Protect re against infinite loops on zero-width matching inSerhiy Storchaka2013-02-161-2/+7
|\ \ | |/
| * Issue #9669: Protect re against infinite loops on zero-width matching inSerhiy Storchaka2013-02-161-2/+7
| |\
| | * Issue #9669: Protect re against infinite loops on zero-width matching inSerhiy Storchaka2013-02-161-2/+7
* | | Issue #13169: The maximal repetition number in a regular expression has beenSerhiy Storchaka2013-02-161-6/+12
|\ \ \ | |/ /
| * | Issue #13169: The maximal repetition number in a regular expression has beenSerhiy Storchaka2013-02-161-6/+12
| |\ \ | | |/
| | * Issue #13169: The maximal repetition number in a regular expression has beenSerhiy Storchaka2013-02-161-6/+12
* | | Issue #16688: Fix backreferences did make case-insensitive regex fail on non-...Serhiy Storchaka2012-12-291-5/+6
|\ \ \ | |/ /
| * | Issue #16688: Fix backreferences did make case-insensitive regex fail on non-...Serhiy Storchaka2012-12-291-5/+6
* | | rename MathcObject to match object in doctrings for re module (#16760)Andrew Svetlov2012-12-251-1/+1
|\ \ \ | |/ /
| * | rename MathcObject to match object in doctrings for re module (#16760)Andrew Svetlov2012-12-251-1/+1
| |\ \ | | |/
| | * rename MathcObject to match object in doctrings for re module (#16760)Andrew Svetlov2012-12-251-1/+1
* | | Issue #16443: Add docstrings to regular expression match objects.Andrew Svetlov2012-12-231-15/+55
|\ \ \ | |/ /
| * | Issue #16443: Add docstrings to regular expression match objects.Andrew Svetlov2012-12-231-15/+55
| |\ \ | | |/
| | * Issue #16443: Add docstrings to regular expression match objects.Andrew Svetlov2012-12-231-15/+55
* | | 1 << 31 is invalid for signed integers, fix it by making 1 unsigned.Gregory P. Smith2012-12-111-2/+2
|\ \ \ | |/ /
| * | 1 << 31 is invalid for signed integers, fix it by making 1 unsigned.Gregory P. Smith2012-12-111-2/+2
| |\ \ | | |/
| | * 1 << 31 is invalid for signed integers, fix it by making 1 unsigned.Gregory P. Smith2012-12-111-2/+2
* | | Issue #10182: The re module doesn't truncate indices to 32 bits anymore.Antoine Pitrou2012-12-021-5/+5
|\ \ \ | |/ /
| * | Issue #10182: The re module doesn't truncate indices to 32 bits anymore.Antoine Pitrou2012-12-021-5/+5
| |\ \ | | |/
| | * Issue #10182: The re module doesn't truncate indices to 32 bits anymore.Antoine Pitrou2012-12-021-5/+5
| | * Issue #1160: Fix compiling large regular expressions on UCS2 builds.Antoine Pitrou2012-11-201-4/+7
* | | Issue #9566: Use the right type to fix a compiler warnings on Win64Victor Stinner2012-10-301-7/+7
|/ /
* | closes #14259 re.finditer() now takes keyword arguments: pos, endpos.Sean Reifschneider2012-03-131-7/+9
* | merge 3.2 (#14212)Benjamin Peterson2012-03-071-25/+40
|\ \ | |/