summaryrefslogtreecommitdiffstats
path: root/Lib/sre.py
Commit message (Collapse)AuthorAgeFilesLines
* - pedantic: make sure "python -t" doesn't complain...Fredrik Lundh2000-06-301-11/+11
|
* - fixed default value handling in group/groupdictFredrik Lundh2000-06-301-1/+1
| | | | - added test suite
* - fixed split behaviour on empty matchesFredrik Lundh2000-06-301-9/+6
| | | | | | - fixed compiler problems when using locale/unicode flags - fixed group/octal code parsing in sub/subn templates
* - fixed another split problemFredrik Lundh2000-06-291-4/+4
| | | | | | | | | (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.
* - fixed splitFredrik Lundh2000-06-291-8/+12
| | | | | | | | | | | | | | (test_sre still complains about split, but that's caused by the group reset bug, not split itself) - added more mark slots (should be dynamically allocated, but 100 is better than 32. and checking for the upper limit is better than overwriting the memory ;-) - internal: renamed the cursor helper class - internal: removed some bloat from sre_compile
* towards 1.6b1Fredrik Lundh2000-06-291-6/+17
|
* Fix bug when the replacement template is a callable objectAndrew M. Kuchling2000-06-181-1/+1
|
* Fredrik Lundh: here's the 96.6% version of SREJeremy Hylton2000-06-011-18/+105
|
* I know this is only a temporary stop-gap measure, but the match() andGuido van Rossum2000-05-021-2/+1
| | | | | | search() functions didn't even work because _fixflags() isn't idempotent. I'm adding another stop-gap measure so that you can at least use sre.search() and sre.match() with a zero flags arg.
* Added Fredrik Lundh's sre module and its supporting cast.Guido van Rossum2000-03-311-0/+46
NOTE: THIS IS VERY ROUGH ALPHA CODE!