| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #22364: Improved some re error messages using regex for hints. | Serhiy Storchaka | 2015-03-25 | 1 | -1/+1 |
|
|
* | Issues #814253, #9179: Group references and conditional group references now | Serhiy Storchaka | 2015-02-21 | 1 | -2/+3 |
|
|
* | merge 3.4 (#9179) | Benjamin Peterson | 2014-11-30 | 1 | -3/+2 |
|\ |
|
| * | backout 9fcf4008b626 (#9179) for further consideration | Benjamin Peterson | 2014-11-30 | 1 | -3/+2 |
|
|
* | | Minor code clean up and improvements in the re module. | Serhiy Storchaka | 2014-11-11 | 1 | -1/+1 |
|
|
* | | Issues #814253, #9179: Group references and conditional group references now | Serhiy Storchaka | 2014-11-07 | 1 | -2/+3 |
|\ \
| |/ |
|
| * | Issues #814253, #9179: Group references and conditional group references now | Serhiy Storchaka | 2014-11-07 | 1 | -2/+3 |
|
|
* | | Fixed compile error in issue #22410. The _locale module is optional. | Serhiy Storchaka | 2014-10-30 | 1 | -1/+6 |
|\ \
| |/ |
|
| * | Fixed compile error in issue #22410. The _locale module is optional. | Serhiy Storchaka | 2014-10-30 | 1 | -1/+6 |
|
|
* | | Issue #22410: Module level functions in the re module now cache compiled | Serhiy Storchaka | 2014-10-30 | 1 | -2/+9 |
|\ \
| |/ |
|
| * | Issue #22410: Module level functions in the re module now cache compiled | Serhiy Storchaka | 2014-10-30 | 1 | -2/+9 |
|
|
* | | Issue #22510: Get rid of little overhead of testing re.DEBUG flag. | Serhiy Storchaka | 2014-09-29 | 1 | -7/+5 |
|
|
* | | Removed a code for suport Python version <2.2. | Serhiy Storchaka | 2014-09-28 | 1 | -11/+12 |
|/ |
|
* | Issue #20426: When passing the re.DEBUG flag, re.compile() displays the debug... | Antoine Pitrou | 2014-02-03 | 1 | -7/+10 |
|\ |
|
| * | Issue #20426: When passing the re.DEBUG flag, re.compile() displays the debug... | Antoine Pitrou | 2014-02-03 | 1 | -7/+10 |
|
|
* | | Issue #16203: Add re.fullmatch() function and regex.fullmatch() method, | Serhiy Storchaka | 2013-11-23 | 1 | -11/+17 |
|
|
* | | Back out accidentally pushed changeset b51218966201. | Georg Brandl | 2013-10-13 | 1 | -17/+11 |
|
|
* | | Add re.fullmatch() function and regex.fullmatch() method, which anchor the | Georg Brandl | 2013-10-13 | 1 | -11/+17 |
|
|
* | | Remove import functools from re module. The re module imports functools but n... | Christian Heimes | 2013-10-13 | 1 | -1/+0 |
|/ |
|
* | Issue #16564: Fixed a performance regression relative to Python 3.1 in the | Serhiy Storchaka | 2013-03-16 | 1 | -6/+24 |
|\ |
|
| * | Issue #16564: Fixed a performance regression relative to Python 3.1 in the | Serhiy Storchaka | 2013-03-16 | 1 | -9/+25 |
|
|
* | | Set cache sizes to a power-of-two | Raymond Hettinger | 2013-02-17 | 1 | -2/+2 |
|
|
* | | #14236: merge with 3.2. | Ezio Melotti | 2012-04-29 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | #14236: fix docs for \S. | Ezio Melotti | 2012-04-29 | 1 | -1/+1 |
|
|
* | | #14236: merge with 3.2. | Ezio Melotti | 2012-04-29 | 1 | -1/+4 |
|\ \
| |/ |
|
| * | #14236: mention Unicode whitespace in \s documentation. | Ezio Melotti | 2012-04-29 | 1 | -1/+4 |
|
|
* | | Merge with 3.2. | Georg Brandl | 2012-03-10 | 1 | -3/+8 |
|\ \
| |/ |
|
| * | Closes #14244: add info about capturing groups and maxsplit to the docstring ... | Georg Brandl | 2012-03-10 | 1 | -3/+8 |
|
|
* | | Merge 3.2 | Florent Xicluna | 2011-10-28 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Closes #13258: Use callable() built-in in the standard library. | Florent Xicluna | 2011-10-28 | 1 | -1/+1 |
|
|
* | | Issue 13227: Option to make the lru_cache() type specific (suggested by Andre... | Raymond Hettinger | 2011-10-20 | 1 | -5/+2 |
|
|
* | | #2650: re.escape() no longer escapes the "_". | Ezio Melotti | 2011-04-10 | 1 | -3/+5 |
|/ |
|
* | #2650: Merge with 3.1. | Ezio Melotti | 2011-03-25 | 1 | -2/+1 |
|\ |
|
| * | #2650: Refactor re.escape to use enumerate(). | Ezio Melotti | 2011-03-25 | 1 | -2/+1 |
|
|
* | | Adopt more descriptive attribute names as suggested on python-dev. | Raymond Hettinger | 2010-09-04 | 1 | -2/+2 |
|
|
* | | Clean-up the cache patch for the re module. | Raymond Hettinger | 2010-08-14 | 1 | -48/+7 |
|
|
* | | Reapply r83877. | Antoine Pitrou | 2010-08-13 | 1 | -20/+12 |
|
|
* | | Revert r83877 in order to fix compilation | Antoine Pitrou | 2010-08-09 | 1 | -12/+20 |
|
|
* | | reapply the revert made in r83875 | Senthil Kumaran | 2010-08-09 | 1 | -20/+12 |
|
|
* | | Revert 83784 adding functools.lru_cache() to the re module. | Raymond Hettinger | 2010-08-09 | 1 | -12/+20 |
|
|
* | | Issue 9396. Apply functools.lru_cache in the place of the | Raymond Hettinger | 2010-08-09 | 1 | -20/+12 |
|
|
* | | The default size of the re module's compiled regular expression cache has | Gregory P. Smith | 2010-07-27 | 1 | -3/+36 |
|/ |
|
* | Merged revisions 70090 via svnmerge from | Gregory P. Smith | 2009-03-02 | 1 | -6/+6 |
|
|
* | Merged revisions 68116-68119,68121,68123-68127 via svnmerge from | Benjamin Peterson | 2009-01-01 | 1 | -2/+4 |
|
|
* | Issue #3756: make re.escape() handle bytes as well as str. | Guido van Rossum | 2008-09-10 | 1 | -15/+31 |
|
|
* | #2834: Change re module semantics, so that str and bytes mixing is forbidden, | Antoine Pitrou | 2008-08-19 | 1 | -8/+23 |
|
|
* | Rename copy_reg module to copyreg. | Alexandre Vassalotti | 2008-05-11 | 1 | -2/+2 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-06 | 1 | -1/+1 |
|
|
* | Merged revisions 60284-60349 via svnmerge from | Christian Heimes | 2008-01-27 | 1 | -1/+6 |
|
|
* | Merged revisions 60151-60159,60161-60168,60170,60172-60173,60175 via svnmerge... | Georg Brandl | 2008-01-21 | 1 | -3/+6 |
|
|