Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix for bug #110651 (Jitterbug PR#343): only use the low 8 bits of an octal | Andrew M. Kuchling | 2000-08-02 | 1 | -1/+1 |
| | | | | escape, as documented in the comment for the check_escape() function | ||||
* | merge Include/my*.h into Include/pyport.h | Peter Schneider-Kamp | 2000-07-31 | 1 | -1/+0 |
| | | | | marked my*.h as obsolete | ||||
* | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 1 | -4/+4 |
| | | | | | | | | | | comments, docstrings or error messages. I fixed two minor things in test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't"). There is a minor style issue involved: Guido seems to have preferred English grammar (behaviour, honour) in a couple places. This patch changes that to American, which is the more prominent style in the source. I prefer English myself, so if English is preferred, I'd be happy to supply a patch myself ;) | ||||
* | Add more "volatile" decls to stop gcc -Wall warnings. | Tim Peters | 2000-07-05 | 1 | -2/+2 |
| | | | | | | | | Somebody w/ gcc please check that the wngs are gone! There are cheaper (at runtime) ways to prevent the wngs, but they're obscure and delicate. I'm going for the easy Big Hammer here under the theory that PCRE will be replaced by SRE anyway. | ||||
* | Fix bug reported by atkins@gweep.net; re.compile(r"[\100-\410]") | Andrew M. Kuchling | 2000-06-01 | 1 | -1/+1 |
| | | | | | dumps core. Solution: fix check_escape() to match its comment and use only the low 8 bits of the octal number. | ||||
* | Patch from Vladimir Marangozov <marangoz@python.inrialpes.fr> | Andrew M. Kuchling | 2000-02-18 | 1 | -6/+6 |
| | | | | | | | The same problem (mixed mallocs) exists for the pcre stack. The buffers md->... are allocated via PyMem_RESIZE in grow_stack(), while in free_stack() they are released with free() instead of PyMem_DEL(). | ||||
* | pcre_exec(): Andrew Kuchling's patch for pcre memory leak. | Barry Warsaw | 1999-01-27 | 1 | -0/+1 |
| | |||||
* | Add dummy variable to avoid optimizer bug on OS/2 -- patch by Jeff Rush. | Guido van Rossum | 1998-12-21 | 1 | -0/+2 |
| | | | | (AMK: you should probably copy this into your patch set for pcre.) | ||||
* | Fix benign problems found by a picky SGI compiler (unreachable break | Guido van Rossum | 1998-07-07 | 1 | -2/+0 |
| | | | | after a return or goto). | ||||
* | AMK's revised version of the previous patch. | Guido van Rossum | 1998-05-07 | 1 | -8/+24 |
| | |||||
* | Address warnings issued by the MSVC++ compiler | Guido van Rossum | 1998-04-10 | 1 | -2/+2 |
| | |||||
* | AMK's latest | Guido van Rossum | 1998-04-03 | 1 | -47/+119 |
| | |||||
* | patch for re.sub bug, by AMK. | Guido van Rossum | 1998-03-10 | 1 | -2/+3 |
| | |||||
* | A bug in PCRE could cause core dumps in patterns such as | Guido van Rossum | 1998-02-20 | 1 | -2/+7 |
| | | | | '((a)*)*'. Andrew Kuchling posted a fix to the string-sig. | ||||
* | AMK's latest -- synchronized with PCRE 1.04. | Guido van Rossum | 1997-12-22 | 1 | -123/+168 |
| | |||||
* | AMK's latest; plus three null bytes that I added for purify | Guido van Rossum | 1997-12-17 | 1 | -146/+121 |
| | |||||
* | Patch (by Andrew Kuchling of course) to prevent named back references | Guido van Rossum | 1997-12-15 | 1 | -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 Rossum | 1997-12-10 | 1 | -2/+2 |
| | |||||
* | New pcre version from AMK | Guido van Rossum | 1997-12-08 | 1 | -714/+1275 |
| | |||||
* | Patches by Fred Lundh to make it compile better with K&R compilers. | Guido van Rossum | 1997-12-02 | 1 | -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 Rossum | 1997-10-08 | 1 | -16/+18 |
| | | | | (Two small changes to shup up gcc added.) | ||||
* | New "re" regular expression support. | Guido van Rossum | 1997-10-06 | 1 | -0/+4075 |
This code is written by Philip Hazel and Andrew Kuchling. It requires a new "re.py" module, too. |