summaryrefslogtreecommitdiff
path: root/Lib/sre_parse.py
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-30375: Correct the stacklevel of regex compiling warnings. (#1595) ...Serhiy Storchaka2017-05-181-21/+21
* [2.7] bpo-30363: Backport warnings in the re module. (#1577)Serhiy Storchaka2017-05-181-1/+29
* Issue #26475: Fixed debugging output for regular expressions with the (?x) flag.Serhiy Storchaka2016-03-061-3/+3
* Issues #814253, #9179: Warnings now are raised when group references andSerhiy Storchaka2015-02-211-0/+20
* backout fac649bf2d10 (#9179) for further considerationBenjamin Peterson2014-11-301-24/+9
* Issues #814253, #9179: Group references and conditional group references nowSerhiy Storchaka2014-11-071-9/+24
* Issue #22423: Fixed debugging output of the GROUPREF_EXISTS opcode in the reSerhiy Storchaka2014-09-211-18/+27
* Display the name not the group itselfRaymond Hettinger2014-06-221-1/+1
* Issue #8343: Named group error msgs did not show the group name.Raymond Hettinger2014-06-221-3/+6
* Issue #18050: Fixed an incompatibility of the re module with Python 2.7.3Serhiy Storchaka2013-09-201-1/+0
* Issue #18647: Correctly bound calculated min/max width of a subexpression.Serhiy Storchaka2013-08-191-5/+5
* #17341: Include name in re error message about invalid group name.R David Murray2013-04-141-2/+4
* Issue #13169: The maximal repetition number in a regular expression has beenSerhiy Storchaka2013-02-161-2/+7
* #13899: \A, \Z, and \B now correctly match the A, Z, and B literals when used...Ezio Melotti2013-01-111-1/+1
* #12759: sre_parse now raises a proper error when the name of the group is mis...Ezio Melotti2012-11-031-1/+7
* remove set compat cruftBenjamin Peterson2008-10-141-6/+0
* remove some __getslice__Benjamin Peterson2008-05-271-2/+0
* Make sre's SubPattern objects accept slice objects like it already acceptsThomas Wouters2006-12-191-0/+2
* Bug #1202493: Fixing SRE parser to handle '{}' as perl does, rather thanGustavo Niemeyer2005-09-141-0/+3
* Complete the previous effort to factor out constant expressionsRaymond Hettinger2005-02-281-8/+19
* Minor aesthetic change in sre_parse.py, as suggested by Mike Coleman.Gustavo Niemeyer2004-09-031-2/+2
* Applying modified version of patch #1018386, which fixesGustavo Niemeyer2004-09-031-42/+36
* PEP 292 classes Template and SafeTemplate are added to the string module.Barry Warsaw2004-08-251-21/+13
* Simple Optimizations:Raymond Hettinger2004-03-261-73/+92
* Whitespace normalization.Tim Peters2004-01-181-2/+2
* Implemented non-recursive SRE matching.Gustavo Niemeyer2003-10-171-1/+39
* Patch #681152: Support escaped Unicode characters in classes. Fixes #612074.Martin v. Löwis2003-04-191-1/+1
* SF patch #720991 by Gary Herron:Guido van Rossum2003-04-141-1/+3
* Replace boolean test with is None.Raymond Hettinger2002-06-021-2/+2
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-2/+2
* Partial introduction of bools where appropriate.Guido van Rossum2002-04-071-3/+3
* SF #515022 remove unused variableNeal Norwitz2002-02-111-1/+0
* bug #133283, #477728, #483789, #490573Fredrik Lundh2001-12-091-2/+2
* Improved error msg when a symbolic group name is redefined. Added docsTim Peters2001-11-031-2/+4
* SF bug #476912: flag repeated use of the same groupname asFredrik Lundh2001-11-021-1/+3
* fixed #449964: sre.sub raises an exception if the template contains aFredrik Lundh2001-09-181-4/+4
* Added docstrings by Neal Norwitz. This closes SF bug #450980.Fred Drake2001-09-041-0/+2
* sre 2.1b2 update:Fredrik Lundh2001-03-221-22/+41
* detect attempts to repeat anchors (fixes bug #130748)Fredrik Lundh2001-02-181-0/+3
* - restored 1.5.2 compatibility (sorry, eric)Fredrik Lundh2001-02-181-22/+27
* bunch more __all__ listsSkip Montanaro2001-02-151-0/+3
* String method conversion.Eric S. Raymond2001-02-091-18/+12
* bumped SRE version number to 2.1. cleaned up and added 1.5.2Fredrik Lundh2001-01-161-11/+17
* SRE: stricter pattern syntax checking (covers parts of bug #115900)Fredrik Lundh2001-01-141-7/+17
* SRE fixes for 2.1 alpha:Fredrik Lundh2001-01-141-9/+9
* -- properly reset groups in findall (bug #117612)Fredrik Lundh2000-10-281-2/+12
* Fixed too ambitious "nothing to repeat" check. Closes bug #114033.Fredrik Lundh2000-10-071-2/+0
* SRE didn't handle character category followed by hyphen inside aFredrik Lundh2000-10-071-0/+2
* Recompile pattern if (?x) flag was found inside the pattern during theFredrik Lundh2000-10-031-0/+5
* - don't hang if group id is followed by whitespace (closes bug #114660)Fredrik Lundh2000-09-241-1/+1