Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | -- changed findall to return empty strings instead of None | Fredrik Lundh | 2000-08-09 | 1 | -0/+1 |
| | | | | for undefined groups | ||||
* | -- added recursion limit (currently ~10,000 levels) | Fredrik Lundh | 2000-08-03 | 1 | -0/+10 |
| | | | | | | | -- improved error messages -- factored out SRE_COUNT; the same code is used by SRE_OP_REPEAT_ONE_TEMPLATE -- minor cleanups | ||||
* | -- SRE 0.9.8: now that the bug is fixed, I might as well enable | Fredrik Lundh | 2000-08-01 | 1 | -4/+2 |
| | | | | the test again... | ||||
* | -- SRE 0.9.8: updated test scripts | Fredrik Lundh | 2000-08-01 | 1 | -5/+6 |
| | |||||
* | - added lookbehind support (?<=pattern), (?<!pattern). | Fredrik Lundh | 2000-07-03 | 1 | -25/+25 |
| | | | | | | | | | | | | | | | | | the pattern must have a fixed width. - got rid of array-module dependencies; the match pro- gram is now stored inside the pattern object, rather than in an extra string buffer. - cleaned up a various of potential leaks, api abuses, and other minors in the engine module. - use mal's new isalnum macro, rather than my own work- around. - untabified test_sre.py. seems like I removed a couple of trailing spaces in the process... | ||||
* | - pedantic: make sure "python -t" doesn't complain... | Fredrik Lundh | 2000-06-30 | 1 | -5/+5 |
| | |||||
* | - fixed default value handling in group/groupdict | Fredrik Lundh | 2000-06-30 | 1 | -0/+385 |
- added test suite |