summaryrefslogtreecommitdiffstats
path: root/Modules/_sre.c
Commit message (Expand)AuthorAgeFilesLines
* map re.sub() to string.replace(), when possibleFredrik Lundh2001-07-081-0/+23
* bug #416670Fredrik Lundh2001-07-031-16/+87
* reapplied darryl gallion's minimizing repeat fix. I'm still not 100%Fredrik Lundh2001-07-021-1/+1
* pythonware repository roundtrip (untabification)Fredrik Lundh2001-07-021-12/+13
* added martin's BIGCHARSET patch to SRE 2.1.1. martin reports 2xFredrik Lundh2001-07-021-0/+13
* merged with pythonware's SRE 2.1.1 codebaseFredrik Lundh2001-07-021-2/+92
* SRE: made "copyright" string static, to avoid potential linkingFredrik Lundh2001-04-151-1/+8
* sre 2.1b2 update:Fredrik Lundh2001-03-221-16/+58
* SF patch 404928: Support for next Cygwin gcc (2.95.2-8)Tim Peters2001-02-281-4/+1
* bumped SRE version number to 2.1. cleaned up and added 1.5.2Fredrik Lundh2001-01-161-25/+41
* fixed a memory leak in pattern cleanup (patch #103248 by cgw)Fredrik Lundh2001-01-161-2/+6
* added "magic" number to the _sre module, to avoid weird errors causedFredrik Lundh2001-01-151-1/+9
* -- don't use recursion for unbounded non-greedy repeatFredrik Lundh2001-01-141-2/+13
* SRE fixes for 2.1 alpha:Fredrik Lundh2001-01-141-23/+33
* Fix bug 126587: matchobject.groupdict() leaks memory because of a missingAndrew M. Kuchling2000-12-221-0/+1
* -- properly reset groups in findall (bug #117612)Fredrik Lundh2000-10-281-15/+18
* Accept keyword arguments for (most) pattern and match objectFredrik Lundh2000-10-031-31/+45
* Fixed negative lookahead/lookbehind. Closes bug #115618.Fredrik Lundh2000-10-031-4/+1
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-261-6/+0
* - fixed yet another gcc -pedantic warningFredrik Lundh2000-09-211-16/+47
* return -1 for undefined groups (as implemented in 1.5.2) instead ofFredrik Lundh2000-09-021-16/+4
* oops. accidentally reintroduced a memory leak. put the bugfix back.Fredrik Lundh2000-08-271-3/+4
* don't mistake memory errors (including reaching the recursion limit)Fredrik Lundh2000-08-271-18/+24
* pattern_findall(): Plug small memory leak discovered by Insure.Barry Warsaw2000-08-181-3/+3
* The sre test suite currently overruns the stack on Win64, Linux64, and MontereyTrent Mick2000-08-161-2/+11
* -- changed findall to return empty strings instead of NoneFredrik Lundh2000-08-091-11/+11
* Added a missing } in the USE_STACKCHECK code.Jack Jansen2000-08-071-0/+1
* -- reset marks if repeat_one tail doesn't matchFredrik Lundh2000-08-071-93/+128
* + if USE_STACKCHECK is defined, use PyOS_CheckStack to lookFredrik Lundh2000-08-071-0/+7
* -- added recursion limit (currently ~10,000 levels)Fredrik Lundh2000-08-031-156/+172
* final 0.9.8 updates:Fredrik Lundh2000-08-011-15/+46
* -- fixed width calculations for alternationsFredrik Lundh2000-08-011-28/+189
* SRE 0.9.8: passes the entire test suiteFredrik Lundh2000-08-011-448/+295
* -- SRE 0.9.6 sync. this includes:Fredrik Lundh2000-07-231-1096/+1189
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-1/+1
* replace PyXXX_Length calls with PyXXX_Size callsJeremy Hylton2000-07-121-1/+1
* maintenance release:Fredrik Lundh2000-07-051-32/+31
* - fixed grouping error bugFredrik Lundh2000-07-031-16/+33
* - added lookbehind support (?<=pattern), (?<!pattern).Fredrik Lundh2000-07-031-55/+77
* - experimental: added two new attributes to the match object:Fredrik Lundh2000-07-021-12/+28
* - actually enabled charset anchors in the engine (still notFredrik Lundh2000-07-021-4/+26
* -- use charset bitmaps where appropriate. this gives a 5-10%Fredrik Lundh2000-07-021-18/+45
* - fixed "{ in any other context" bugFredrik Lundh2000-07-011-1/+4
* today's SRE update:Fredrik Lundh2000-07-011-4/+11
* -- changed $ to match before a trailing newline, evenFredrik Lundh2000-06-301-1/+3
* the mad patcher strikes again:Fredrik Lundh2000-06-301-25/+24
* - fixed lookahead assertions (#10, #11, #12)Fredrik Lundh2000-06-301-7/+18
* - fixed default value handling in group/groupdictFredrik Lundh2000-06-301-18/+23
* - fixed split behaviour on empty matchesFredrik Lundh2000-06-301-3/+3
* still trying to figure out how to fix the remainingFredrik Lundh2000-06-291-12/+78