summaryrefslogtreecommitdiffstats
path: root/Modules/pypcre.c
Commit message (Collapse)AuthorAgeFilesLines
* pcre_exec(): Andrew Kuchling's patch for pcre memory leak.Barry Warsaw1999-01-271-0/+1
|
* Add dummy variable to avoid optimizer bug on OS/2 -- patch by Jeff Rush.Guido van Rossum1998-12-211-0/+2
| | | | (AMK: you should probably copy this into your patch set for pcre.)
* Fix benign problems found by a picky SGI compiler (unreachable breakGuido van Rossum1998-07-071-2/+0
| | | | after a return or goto).
* AMK's revised version of the previous patch.Guido van Rossum1998-05-071-8/+24
|
* Address warnings issued by the MSVC++ compilerGuido van Rossum1998-04-101-2/+2
|
* AMK's latestGuido van Rossum1998-04-031-47/+119
|
* patch for re.sub bug, by AMK.Guido van Rossum1998-03-101-2/+3
|
* A bug in PCRE could cause core dumps in patterns such asGuido van Rossum1998-02-201-2/+7
| | | | '((a)*)*'. Andrew Kuchling posted a fix to the string-sig.
* AMK's latest -- synchronized with PCRE 1.04.Guido van Rossum1997-12-221-123/+168
|
* AMK's latest; plus three null bytes that I added for purifyGuido van Rossum1997-12-171-146/+121
|
* Patch (by Andrew Kuchling of course) to prevent named back referencesGuido van Rossum1997-12-151-1/+1
| | | | in the pattern to wear out the reference count on small integers.
* The 'l' flag (locale specific matching) has been renamed to 'L'.Guido van Rossum1997-12-101-2/+2
|
* New pcre version from AMKGuido van Rossum1997-12-081-714/+1275
|
* Patches by Fred Lundh to make it compile better with K&R compilers.Guido van Rossum1997-12-021-20/+20
| | | | | (Should really let AMK do this, but don't know when he'll give me a new version.)
* Checking in AMK's latest installement.Guido van Rossum1997-10-081-16/+18
| | | | (Two small changes to shup up gcc added.)
* New "re" regular expression support.Guido van Rossum1997-10-061-0/+4075
This code is written by Philip Hazel and Andrew Kuchling. It requires a new "re.py" module, too.