summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sre.py
Commit message (Expand)AuthorAgeFilesLines
* Complete the absolute import patch for the test suite. All relativeBarry Warsaw2002-07-301-1/+1
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
* bug #133283, #477728, #483789, #490573Fredrik Lundh2001-12-091-1/+1
* Remove erroneous and confusing comment -- sre patterns *can* beGuido van Rossum2001-12-081-2/+2
* added finditer sanity checkFredrik Lundh2001-10-281-0/+11
* sre.split should return the last segment, even if emptyFredrik Lundh2001-10-221-0/+1
* sre.Scanner fixes (from Greg Chapman). also added a Scanner sanityFredrik Lundh2001-10-211-0/+20
* SRE bug #441409:Fredrik Lundh2001-10-181-0/+6
* fixed #449964: sre.sub raises an exception if the template contains aFredrik Lundh2001-09-181-0/+3
* an SRE bugfix a day keeps Guido away...Fredrik Lundh2001-09-181-0/+4
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-5/+6
* Check in a testcase for SF bug #449000: re.sub(r'\n', ...) broke.Guido van Rossum2001-08-101-0/+6
* reapplied darryl gallion's minimizing repeat fix. I'm still not 100%Fredrik Lundh2001-07-021-1/+1
* SRE 2.1b2: increase the chances that the sre test works on otherFredrik Lundh2001-03-221-6/+3
* sre 2.1b2 update:Fredrik Lundh2001-03-221-0/+2
* - restored 1.5.2 compatibility (sorry, eric)Fredrik Lundh2001-02-181-1/+1
* String method conversion.Eric S. Raymond2001-02-091-1/+1
* a bold attempt to fix things broken by MAL's verify patch: importFredrik Lundh2001-01-171-1/+1
* This patch removes all uses of "assert" in the regression test suiteMarc-André Lemburg2001-01-171-1/+1
* bumped SRE version number to 2.1. cleaned up and added 1.5.2Fredrik Lundh2001-01-161-7/+17
* -- don't use recursion for unbounded non-greedy repeatFredrik Lundh2001-01-141-1/+1
* reapplied Fred's "recommended style" patch...Fredrik Lundh2001-01-141-8/+8
* SRE fixes for 2.1 alpha:Fredrik Lundh2001-01-141-8/+8
* Update the code to better reflect recommended style:Fred Drake2000-12-121-8/+8
* -- properly reset groups in findall (bug #117612)Fredrik Lundh2000-10-281-0/+3
* - don't hang if group id is followed by whitespace (closes bug #114660)Fredrik Lundh2000-09-241-0/+3
* updated SRE test suite (fixes PEP223 problem, shows syntax errors)Fredrik Lundh2000-09-031-76/+78
* Repair failing test_sre.py.Tim Peters2000-09-031-3/+3
* return -1 for undefined groups (as implemented in 1.5.2) instead ofFredrik Lundh2000-09-021-1/+6
* -- tightened up parsing of octal numbersFredrik Lundh2000-09-021-189/+150
* -- changed findall to return empty strings instead of NoneFredrik Lundh2000-08-091-0/+1
* -- added recursion limit (currently ~10,000 levels)Fredrik Lundh2000-08-031-0/+10
* -- SRE 0.9.8: now that the bug is fixed, I might as well enableFredrik Lundh2000-08-011-4/+2
* -- SRE 0.9.8: updated test scriptsFredrik Lundh2000-08-011-5/+6
* - added lookbehind support (?<=pattern), (?<!pattern).Fredrik Lundh2000-07-031-25/+25
* - pedantic: make sure "python -t" doesn't complain...Fredrik Lundh2000-06-301-5/+5
* - fixed default value handling in group/groupdictFredrik Lundh2000-06-301-0/+385