- 03 Eyl, 2004 2 kayıt (commit)
-
-
Gustavo Niemeyer yazdı
-
Gustavo Niemeyer yazdı
some escaping bugs in SRE.
-
- 25 Agu, 2004 1 kayıt (commit)
-
-
Barry Warsaw yazdı
This patch includes test cases and documentation updates, as well as NEWS file updates. This patch also updates the sre modules so that they don't import the string module, breaking direct circular imports.
-
- 26 Mar, 2004 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
* Factor constant expressions out of loops. * Presize a list being grown to a known length.
-
- 18 Ock, 2004 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 17 Eki, 2003 1 kayıt (commit)
-
-
Gustavo Niemeyer yazdı
-
- 19 Nis, 2003 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Will backport to 2.2.
-
- 14 Nis, 2003 1 kayıt (commit)
-
-
Guido van Rossum yazdı
A small fix for bug #545855 and Greg Chapman's addition of op code SRE_OP_MIN_REPEAT_ONE for eliminating recursion on simple uses of pattern '*?' on a long string.
-
- 02 Haz, 2002 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 01 Haz, 2002 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 07 Nis, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 11 Şub, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 09 Ara, 2001 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
backed out of broken minimal repeat patch from July also fixed a couple of minor potential resource leaks in pattern_subx (Guido had already fixed the big one)
-
- 03 Kas, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
and NEWS. Bugfix candidate? That's a dilemma for Anthony <wink>: /F did fix a longstanding bug here, but the fix can cause code to raise an exception that previously worked by accident.
-
- 02 Kas, 2001 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
the error it really is (and always has been)
-
- 18 Eyl, 2001 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
\g<x> group reference followed by a character escape (also restructured a few things on the way to fixing #449000)
-
- 04 Eyl, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 22 Mar, 2001 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
- take locale into account for word boundary anchors (#410271) - restored 2.0's *? behaviour (#233283, #408936 and others) - speed up re.sub/re.subn
-
- 18 Şub, 2001 2 kayıt (commit)
-
-
Fredrik Lundh yazdı
-
Fredrik Lundh yazdı
- removed __all__ cruft from internal modules (sorry, skip) - don't assume ASCII for string escapes (sorry, per)
-
- 15 Şub, 2001 1 kayıt (commit)
-
-
Skip Montanaro yazdı
also modified check_all function to suppress all warnings since they aren't relevant to what this test is doing (allows quiet checking of regsub, for instance)
-
- 09 Şub, 2001 1 kayıt (commit)
-
-
Eric S. Raymond yazdı
-
- 16 Ock, 2001 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
compatibility patches.
-
- 14 Ock, 2001 2 kayıt (commit)
-
-
Fredrik Lundh yazdı
-
Fredrik Lundh yazdı
-- added some more docstrings -- fixed typo in scanner class (#125531) -- the multiline flag (?m) should't affect the \Z operator (#127259) -- fixed non-greedy backtracking bug (#123769, #127259) -- added sre.DEBUG flag (currently dumps the parsed pattern structure) -- fixed a couple of glitches in groupdict (the #126587 memory leak had already been fixed by AMK)
-
- 28 Eki, 2000 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
-- fixed negative lookbehind to work correctly at the beginning of the target string (bug #117242) -- improved syntax check; you can no longer refer to a group inside itself (bug #110866)
-
- 07 Eki, 2000 2 kayıt (commit)
-
-
Fredrik Lundh yazdı
-
Fredrik Lundh yazdı
character class. Fix provided by Andrew Kuchling. Closes bug #116251.
-
- 03 Eki, 2000 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
first scan. Closes bug #115040.
-
- 24 Eyl, 2000 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
-
- 02 Eyl, 2000 2 kayıt (commit)
-
-
Fredrik Lundh yazdı
-- improved the SRE test harness: don't use asserts, test a few more things (including more boundary conditions)
-
Tim Peters yazdı
"sre_parse.py missing '7' in DIGITS"
-
- 31 Agu, 2000 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
I fixed the a bug in the regression test harness...)
-
- 07 Agu, 2000 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
(this should fix Sjoerd's xmllib problem) -- added skip field to INFO header -- changed compiler to generate charset INFO header -- changed trace messages to support post-mortem analysis
-
- 01 Agu, 2000 3 kayıt (commit)
-
-
Fredrik Lundh yazdı
-- added REPEAT_ONE operator -- added ANY_ALL operator (used to represent "(?s).")
-
Fredrik Lundh yazdı
-- fixed literal check in branch operator (this broke test_tokenize, as reported by Mark Favas) -- added REPEAT_ONE operator (still not enabled, though) -- added some debugging stuff (maxlevel)
-
Fredrik Lundh yazdı
-- reverted REPEAT operator to use "repeat context" strategy (from 0.8.X), but done right this time. -- got rid of backtracking stack; use nested SRE_MATCH calls instead (should probably put it back again in 0.9.9 ;-) -- properly reset state in scanner mode -- don't use aggressive inlining by default
-
- 23 Tem, 2000 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
+ added "regs" attribute + fixed "pos" and "endpos" attributes + reset "lastindex" and "lastgroup" in scanner methods + removed (?P#id) syntax; the "lastindex" and "lastgroup" attributes are now always set + removed string module dependencies in sre_parse + better debugging support in sre_parse + various tweaks to build under 1.5.2
-
- 03 Tem, 2000 2 kayıt (commit)
-
-
Fredrik Lundh yazdı
- changed "group" operator to "groupref"
-
Fredrik Lundh yazdı
the pattern must have a fixed width. - got rid of array-module dependencies; the match pro- gram is now stored inside the pattern object, rather than in an extra string buffer. - cleaned up a various of potential leaks, api abuses, and other minors in the engine module. - use mal's new isalnum macro, rather than my own work- around. - untabified test_sre.py. seems like I removed a couple of trailing spaces in the process...
-