summaryrefslogtreecommitdiffstats
path: root/Lib/test/output/test_sre
Commit message (Collapse)AuthorAgeFilesLines
* SRE 2.1b2: increase the chances that the sre test works on otherFredrik Lundh2001-03-221-8/+0
| | | | machines...
* SRE 2.1b2: forgot to update one output file (sorry, Fred!)Fredrik Lundh2001-03-221-0/+8
|
* -- tightened up parsing of octal numbersFredrik Lundh2000-09-021-1/+0
| | | | | -- improved the SRE test harness: don't use asserts, test a few more things (including more boundary conditions)
* -- added recursion limit (currently ~10,000 levels)Fredrik Lundh2000-08-031-0/+1
| | | | | | | -- improved error messages -- factored out SRE_COUNT; the same code is used by SRE_OP_REPEAT_ONE_TEMPLATE -- minor cleanups
* -- SRE 0.9.8: updated test scriptsFredrik Lundh2000-08-011-5/+0
|
* -- SRE 0.9.6 sync. this includes:Fredrik Lundh2000-07-231-0/+2
| | | | | | | | | | | + added "regs" attribute + fixed "pos" and "endpos" attributes + reset "lastindex" and "lastgroup" in scanner methods + removed (?P#id) syntax; the "lastindex" and "lastgroup" attributes are now always set + removed string module dependencies in sre_parse + better debugging support in sre_parse + various tweaks to build under 1.5.2
* - fixed grouping error bugFredrik Lundh2000-07-031-3/+0
| | | | - changed "group" operator to "groupref"
* - reverted to "\x is binary byte"Fredrik Lundh2000-06-301-1/+0
| | | | - removed evil tabs from sre_parse and sre_compile
* the mad patcher strikes again:Fredrik Lundh2000-06-301-2/+1
| | | | | | | | | | | | | | | -- 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-3/+0
| | | | - untabified sre_constants.py
* - added support for (?P=name)Fredrik Lundh2000-06-301-2/+0
| | | | (closes #3 and #7 from the status report)
* - fixed default value handling in group/groupdictFredrik Lundh2000-06-301-0/+14
- added test suite