summaryrefslogtreecommitdiffstats
path: root/Lib/sre_parse.py
Commit message (Collapse)AuthorAgeFilesLines
...
* - fixed code generation error in multiline modeFredrik Lundh2000-06-301-5/+6
| | | | - fixed parser flag propagation (of all stupid bugs...)
* - reverted to "\x is binary byte"Fredrik Lundh2000-06-301-4/+5
| | | | - removed evil tabs from sre_parse and sre_compile
* the mad patcher strikes again:Fredrik Lundh2000-06-301-35/+31
| | | | | | | | | | | | | | | -- added pickling support (only works if sre is imported) -- fixed wordsize problems in engine (instead of casting literals down to the character size, cast characters up to the literal size (same as the code word size). this prevents false hits when you're matching a unicode pattern against an 8-bit string. (unfortunately, this broke another test, but I think the test should be changed in this case; more on that on python-dev) -- added sre.purge function (unofficial, clears the cache)
* - fixed lookahead assertions (#10, #11, #12)Fredrik Lundh2000-06-301-0/+19
| | | | - untabified sre_constants.py
* - added support for (?P=name)Fredrik Lundh2000-06-301-4/+17
| | | | (closes #3 and #7 from the status report)
* - 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 compiler problems when using locale/unicode flags - fixed group/octal code parsing in sub/subn templates
* - fixed another split problemFredrik Lundh2000-06-291-1/+0
| | | | | | | | | (those semantics are weird...) - got rid of $Id$'s (for the moment, at least). in other words, there should be no more "empty" checkins. - internal: some minor cleanups.
* - make sure group names are valid identifiersFredrik Lundh2000-06-291-5/+25
| | | | (closes the "SRE: symbolic reference" bug)
* - last patch broke parse_template; fixed by changing someFredrik Lundh2000-06-291-10/+10
| | | | | | | | | | | tests in sre_patch back to previous version - fixed return value from findall - renamed a bunch of functions inside _sre (way too many leading underscores...) </F>
* - removed "alpha only" licensing restrictionFredrik Lundh2000-06-291-46/+13
| | | | | - removed some hacks that worked around 1.6 alpha bugs - removed bogus test code from sre_parse
* 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
| | | | latest public snapshot.""
* Fredrik Lundh: new snapshot. Mostly reindented.Guido van Rossum2000-04-101-359/+364
| | | | | This one should work with unicode expressions, and compile a bit more silently.
* This patch looks large, but it just deletes the ^M characters andAndrew M. Kuchling2000-04-021-357/+357
| | | | untabifies the files. No actual code changes were made.
* Added Fredrik Lundh's sre module and its supporting cast.Guido van Rossum2000-03-311-0/+492
NOTE: THIS IS VERY ROUGH ALPHA CODE!