| Commit message (Expand) | Author | Age | Files | Lines |
* | (experimental) "finditer" method/function. this works pretty much | Fredrik Lundh | 2001-10-24 | 1 | -0/+28 |
|
|
* | another major speedup: let sre.sub/subn check for escapes in the | Fredrik Lundh | 2001-10-22 | 1 | -30/+89 |
|
|
* | sre.split should return the last segment, even if empty | Fredrik Lundh | 2001-10-22 | 1 | -11/+10 |
|
|
* | fixed character set description in docstring (SRE uses Python | Fredrik Lundh | 2001-10-21 | 1 | -96/+41 |
|
|
* | sre.Scanner fixes (from Greg Chapman). also added a Scanner sanity | Fredrik Lundh | 2001-10-21 | 1 | -0/+17 |
|
|
* | rewrote the pattern.sub and pattern.subn methods in C | Fredrik Lundh | 2001-10-21 | 1 | -113/+306 |
|
|
* | rewrote the pattern.split method in C | Fredrik Lundh | 2001-10-20 | 1 | -12/+136 |
|
|
* | SRE bug #441409: | Fredrik Lundh | 2001-10-18 | 1 | -1/+3 |
|
|
* | fixed #449964: sre.sub raises an exception if the template contains a | Fredrik Lundh | 2001-09-18 | 1 | -12/+16 |
|
|
* | an SRE bugfix a day keeps Guido away... | Fredrik Lundh | 2001-09-18 | 1 | -9/+14 |
|
|
* | Removed unreachable return to silence SGI compiler. | Sjoerd Mullender | 2001-08-30 | 1 | -2/+1 |
|
|
* | Patch #445762: Support --disable-unicode | Martin v. Löwis | 2001-08-17 | 1 | -1/+1 |
|
|
* | init_sre(): Plug a little leak reported by Insure. | Barry Warsaw | 2001-08-16 | 1 | -2/+5 |
|
|
* | map re.sub() to string.replace(), when possible | Fredrik Lundh | 2001-07-08 | 1 | -0/+23 |
|
|
* | bug #416670 | Fredrik Lundh | 2001-07-03 | 1 | -16/+87 |
|
|
* | reapplied darryl gallion's minimizing repeat fix. I'm still not 100% | Fredrik Lundh | 2001-07-02 | 1 | -1/+1 |
|
|
* | pythonware repository roundtrip (untabification) | Fredrik Lundh | 2001-07-02 | 1 | -12/+13 |
|
|
* | added martin's BIGCHARSET patch to SRE 2.1.1. martin reports 2x | Fredrik Lundh | 2001-07-02 | 1 | -0/+13 |
|
|
* | merged with pythonware's SRE 2.1.1 codebase | Fredrik Lundh | 2001-07-02 | 1 | -2/+92 |
|
|
* | SRE: made "copyright" string static, to avoid potential linking | Fredrik Lundh | 2001-04-15 | 1 | -1/+8 |
|
|
* | sre 2.1b2 update: | Fredrik Lundh | 2001-03-22 | 1 | -16/+58 |
|
|
* | SF patch 404928: Support for next Cygwin gcc (2.95.2-8) | Tim Peters | 2001-02-28 | 1 | -4/+1 |
|
|
* | bumped SRE version number to 2.1. cleaned up and added 1.5.2 | Fredrik Lundh | 2001-01-16 | 1 | -25/+41 |
|
|
* | fixed a memory leak in pattern cleanup (patch #103248 by cgw) | Fredrik Lundh | 2001-01-16 | 1 | -2/+6 |
|
|
* | added "magic" number to the _sre module, to avoid weird errors caused | Fredrik Lundh | 2001-01-15 | 1 | -1/+9 |
|
|
* | -- don't use recursion for unbounded non-greedy repeat | Fredrik Lundh | 2001-01-14 | 1 | -2/+13 |
|
|
* | SRE fixes for 2.1 alpha: | Fredrik Lundh | 2001-01-14 | 1 | -23/+33 |
|
|
* | Fix bug 126587: matchobject.groupdict() leaks memory because of a missing | Andrew M. Kuchling | 2000-12-22 | 1 | -0/+1 |
|
|
* | -- properly reset groups in findall (bug #117612) | Fredrik Lundh | 2000-10-28 | 1 | -15/+18 |
|
|
* | Accept keyword arguments for (most) pattern and match object | Fredrik Lundh | 2000-10-03 | 1 | -31/+45 |
|
|
* | Fixed negative lookahead/lookbehind. Closes bug #115618. | Fredrik Lundh | 2000-10-03 | 1 | -4/+1 |
|
|
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 1 | -6/+0 |
|
|
* | - fixed yet another gcc -pedantic warning | Fredrik Lundh | 2000-09-21 | 1 | -16/+47 |
|
|
* | return -1 for undefined groups (as implemented in 1.5.2) instead of | Fredrik Lundh | 2000-09-02 | 1 | -16/+4 |
|
|
* | oops. accidentally reintroduced a memory leak. put the bugfix back. | Fredrik Lundh | 2000-08-27 | 1 | -3/+4 |
|
|
* | don't mistake memory errors (including reaching the recursion limit) | Fredrik Lundh | 2000-08-27 | 1 | -18/+24 |
|
|
* | pattern_findall(): Plug small memory leak discovered by Insure. | Barry Warsaw | 2000-08-18 | 1 | -3/+3 |
|
|
* | The sre test suite currently overruns the stack on Win64, Linux64, and Monterey | Trent Mick | 2000-08-16 | 1 | -2/+11 |
|
|
* | -- changed findall to return empty strings instead of None | Fredrik Lundh | 2000-08-09 | 1 | -11/+11 |
|
|
* | Added a missing } in the USE_STACKCHECK code. | Jack Jansen | 2000-08-07 | 1 | -0/+1 |
|
|
* | -- reset marks if repeat_one tail doesn't match | Fredrik Lundh | 2000-08-07 | 1 | -93/+128 |
|
|
* | + if USE_STACKCHECK is defined, use PyOS_CheckStack to look | Fredrik Lundh | 2000-08-07 | 1 | -0/+7 |
|
|
* | -- added recursion limit (currently ~10,000 levels) | Fredrik Lundh | 2000-08-03 | 1 | -156/+172 |
|
|
* | final 0.9.8 updates: | Fredrik Lundh | 2000-08-01 | 1 | -15/+46 |
|
|
* | -- fixed width calculations for alternations | Fredrik Lundh | 2000-08-01 | 1 | -28/+189 |
|
|
* | SRE 0.9.8: passes the entire test suite | Fredrik Lundh | 2000-08-01 | 1 | -448/+295 |
|
|
* | -- SRE 0.9.6 sync. this includes: | Fredrik Lundh | 2000-07-23 | 1 | -1096/+1189 |
|
|
* | Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', | Thomas Wouters | 2000-07-21 | 1 | -1/+1 |
|
|
* | replace PyXXX_Length calls with PyXXX_Size calls | Jeremy Hylton | 2000-07-12 | 1 | -1/+1 |
|
|
* | maintenance release: | Fredrik Lundh | 2000-07-05 | 1 | -32/+31 |
|
|