summaryrefslogtreecommitdiffstats
path: root/Lib/sre_parse.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* -- tightened up parsing of octal numbersFredrik Lundh2000-09-021-8/+8
* SourceForge patch 101396, by an anonymous friend.Tim Peters2000-09-021-1/+1
* closes bug #112468 (and all the other bugs that surfaced whenFredrik Lundh2000-08-311-28/+47
* -- reset marks if repeat_one tail doesn't matchFredrik Lundh2000-08-071-4/+4
* final 0.9.8 updates:Fredrik Lundh2000-08-011-1/+1
* -- fixed width calculations for alternationsFredrik Lundh2000-08-011-5/+5
* SRE 0.9.8: passes the entire test suiteFredrik Lundh2000-08-011-5/+1
* -- SRE 0.9.6 sync. this includes:Fredrik Lundh2000-07-231-76/+79
* - fixed grouping error bugFredrik Lundh2000-07-031-2/+2
* - added lookbehind support (?<=pattern), (?<!pattern).Fredrik Lundh2000-07-031-3/+9
* - experimental: added two new attributes to the match object:Fredrik Lundh2000-07-021-0/+2
* - actually enabled charset anchors in the engine (still notFredrik Lundh2000-07-021-0/+17
* -- use charset bitmaps where appropriate. this gives a 5-10%Fredrik Lundh2000-07-021-4/+3
* - fixed "{ in any other context" bugFredrik Lundh2000-07-011-12/+15
* today's SRE update:Fredrik Lundh2000-07-011-1/+1
* - fixed code generation error in multiline modeFredrik Lundh2000-06-301-5/+6
* - reverted to "\x is binary byte"Fredrik Lundh2000-06-301-4/+5
* the mad patcher strikes again:Fredrik Lundh2000-06-301-35/+31
* - fixed lookahead assertions (#10, #11, #12)Fredrik Lundh2000-06-301-0/+19
* - added support for (?P=name)Fredrik Lundh2000-06-301-4/+17
* - pedantic: make sure "python -t" doesn't complain...Fredrik Lundh2000-06-301-418/+418
* - fixed split behaviour on empty matchesFredrik Lundh2000-06-301-26/+42
* - fixed another split problemFredrik Lundh2000-06-291-1/+0
* - make sure group names are valid identifiersFredrik Lundh2000-06-291-5/+25
* - last patch broke parse_template; fixed by changing someFredrik Lundh2000-06-291-10/+10
* - removed "alpha only" licensing restrictionFredrik Lundh2000-06-291-46/+13
* towards 1.6b1Fredrik Lundh2000-06-291-35/+78
* Patch from /F: this patch brings the CVS version of SRE in sync with theAndrew M. Kuchling2000-06-091-118/+178