summaryrefslogtreecommitdiff
path: root/Lib/re.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-32338: OrderedDict import is no longer needed in re. (GH-4891)Miss Islington (bot)2018-03-101-9/+4
* bpo-30349: Raise FutureWarning for nested sets and set operations (#1553)Serhiy Storchaka2017-11-161-1/+2
* bpo-31671: re: Convert RegexFlag to int before compile (GH-3862)INADA Naoki2017-10-051-0/+4
* bpo-30397: Add re.Pattern and re.Match. (#1646)Serhiy Storchaka2017-10-041-17/+18
* Trivial readability improvement (#3791)Barry Warsaw2017-09-271-1/+1
* bpo-28293: Don't completely dump the regex cache when full. (#3768)Serhiy Storchaka2017-09-261-2/+12
* bpo-30215: Make re.compile() locale agnostic. (#1361)Serhiy Storchaka2017-05-051-10/+2
* bpo-29995: re.escape() now escapes only special characters. (#1007)Serhiy Storchaka2017-04-131-27/+9
* Issue #28637: Reapply changeset 223731925d06Victor Stinner2016-11-141-12/+21
* Issue #28637: Revert issue #28082, don't import enum in reVictor Stinner2016-11-081-21/+12
* Issue #28193: Use lru_cache in the re module.Raymond Hettinger2016-09-181-11/+4
* issue28082: better name for FlagEthan Furman2016-09-111-2/+2
* issue28082: use IntFlag for re constantsEthan Furman2016-09-111-12/+21
* Issue #433028: Added support of modifier spans in regular expressions.Serhiy Storchaka2016-09-101-1/+1
* Removed unused imports.Serhiy Storchaka2016-04-251-1/+0
* Issue #22364: Improved some re error messages using regex for hints.Serhiy Storchaka2015-03-251-1/+1
* Issues #814253, #9179: Group references and conditional group references nowSerhiy Storchaka2015-02-211-2/+3
* merge 3.4 (#9179)Benjamin Peterson2014-11-301-3/+2
|\
| * backout 9fcf4008b626 (#9179) for further considerationBenjamin Peterson2014-11-301-3/+2
* | Minor code clean up and improvements in the re module.Serhiy Storchaka2014-11-111-1/+1
* | Issues #814253, #9179: Group references and conditional group references nowSerhiy Storchaka2014-11-071-2/+3
|\ \ | |/
| * Issues #814253, #9179: Group references and conditional group references nowSerhiy Storchaka2014-11-071-2/+3
* | Fixed compile error in issue #22410. The _locale module is optional.Serhiy Storchaka2014-10-311-1/+6
|\ \ | |/
| * Fixed compile error in issue #22410. The _locale module is optional.Serhiy Storchaka2014-10-311-1/+6
* | Issue #22410: Module level functions in the re module now cache compiledSerhiy Storchaka2014-10-311-2/+9
|\ \ | |/
| * Issue #22410: Module level functions in the re module now cache compiledSerhiy Storchaka2014-10-311-2/+9
* | Issue #22510: Get rid of little overhead of testing re.DEBUG flag.Serhiy Storchaka2014-09-291-7/+5
* | Removed a code for suport Python version <2.2.Serhiy Storchaka2014-09-281-11/+12
|/
* Issue #20426: When passing the re.DEBUG flag, re.compile() displays the debug...Antoine Pitrou2014-02-031-7/+10
|\
| * Issue #20426: When passing the re.DEBUG flag, re.compile() displays the debug...Antoine Pitrou2014-02-031-7/+10
* | Issue #16203: Add re.fullmatch() function and regex.fullmatch() method,Serhiy Storchaka2013-11-231-11/+17
* | Back out accidentally pushed changeset b51218966201.Georg Brandl2013-10-131-17/+11
* | Add re.fullmatch() function and regex.fullmatch() method, which anchor theGeorg Brandl2013-10-131-11/+17
* | Remove import functools from re module. The re module imports functools but n...Christian Heimes2013-10-131-1/+0
|/
* Issue #16564: Fixed a performance regression relative to Python 3.1 in theSerhiy Storchaka2013-03-161-6/+24
|\
| * Issue #16564: Fixed a performance regression relative to Python 3.1 in theSerhiy Storchaka2013-03-161-9/+25
* | Set cache sizes to a power-of-twoRaymond Hettinger2013-02-171-2/+2
* | #14236: merge with 3.2.Ezio Melotti2012-04-291-1/+1
|\ \ | |/
| * #14236: fix docs for \S.Ezio Melotti2012-04-291-1/+1
* | #14236: merge with 3.2.Ezio Melotti2012-04-291-1/+4
|\ \ | |/
| * #14236: mention Unicode whitespace in \s documentation.Ezio Melotti2012-04-291-1/+4
* | Merge with 3.2.Georg Brandl2012-03-101-3/+8
|\ \ | |/
| * Closes #14244: add info about capturing groups and maxsplit to the docstring ...Georg Brandl2012-03-101-3/+8
* | Merge 3.2Florent Xicluna2011-10-281-1/+1
|\ \ | |/
| * Closes #13258: Use callable() built-in in the standard library.Florent Xicluna2011-10-281-1/+1
* | Issue 13227: Option to make the lru_cache() type specific (suggested by Andre...Raymond Hettinger2011-10-201-5/+2
* | #2650: re.escape() no longer escapes the "_".Ezio Melotti2011-04-101-3/+5
|/
* #2650: Merge with 3.1.Ezio Melotti2011-03-251-2/+1
|\
| * #2650: Refactor re.escape to use enumerate().Ezio Melotti2011-03-251-2/+1
* | Adopt more descriptive attribute names as suggested on python-dev.Raymond Hettinger2010-09-041-2/+2