summaryrefslogtreecommitdiffstats
path: root/Modules/_sre.c
Commit message (Expand)AuthorAgeFilesLines
* fix for SF #635398 (don't "downcast" return strings from unicode to ascii)Fredrik Lundh2002-11-221-21/+4
* Make private functions static so we don't pollute the namespaceNeal Norwitz2002-11-101-1/+2
* Fixed sre bug "[#581080] Provoking infinite scanner loops".Gustavo Niemeyer2002-11-071-4/+6
* Fixed bug #470582, using a modified version of patch #527371,Gustavo Niemeyer2002-11-061-18/+19
* Cray fixup as seen in bug #558153.Michael W. Hudson2002-07-311-2/+2
* Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT.Mark Hammond2002-07-191-2/+1
* staticforward bites the dust.Jeremy Hylton2002-07-171-3/+3
* SF #561244 Micro optimizationsNeal Norwitz2002-06-131-4/+1
* Revert use of METH_OLDARGS (use 0) to support 1.5.2Neal Norwitz2002-03-311-2/+4
* Use symbolic METH_VARARGS/METH_OLDARGS instead of 1/0 for ml_flagsNeal Norwitz2002-03-311-5/+5
* bug #133283, #477728, #483789, #490573Fredrik Lundh2001-12-091-19/+11
* Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum2001-12-081-3/+3
* Fix for #489672 (Neil Norwitz): memory leak in test_sre.Guido van Rossum2001-12-071-1/+4
* (experimental) "finditer" method/function. this works pretty muchFredrik Lundh2001-10-241-0/+28
* another major speedup: let sre.sub/subn check for escapes in theFredrik Lundh2001-10-221-30/+89
* sre.split should return the last segment, even if emptyFredrik Lundh2001-10-221-11/+10
* fixed character set description in docstring (SRE uses PythonFredrik Lundh2001-10-211-96/+41
* sre.Scanner fixes (from Greg Chapman). also added a Scanner sanityFredrik Lundh2001-10-211-0/+17
* rewrote the pattern.sub and pattern.subn methods in CFredrik Lundh2001-10-211-113/+306
* rewrote the pattern.split method in CFredrik Lundh2001-10-201-12/+136
* SRE bug #441409:Fredrik Lundh2001-10-181-1/+3
* fixed #449964: sre.sub raises an exception if the template contains aFredrik Lundh2001-09-181-12/+16
* an SRE bugfix a day keeps Guido away...Fredrik Lundh2001-09-181-9/+14
* Removed unreachable return to silence SGI compiler.Sjoerd Mullender2001-08-301-2/+1
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-1/+1
* init_sre(): Plug a little leak reported by Insure.Barry Warsaw2001-08-161-2/+5
* 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