- 02 Haz, 2005 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
- 28 Şub, 2005 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
and improve the speed of the if/elif/else blocks.
-
- 15 Eki, 2004 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
-
- 07 May, 2004 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Backported to 2.3.
-
- 27 Mar, 2004 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 26 Mar, 2004 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
* pre-build a single identity function for the fixup function * pre-build membership tests in dictionaries instead of in-line tuples * assign len() to a local variable * assign append() methods to a local variable * use xrange() instead of range() * replace "x<<1" with "x+x"
-
- 25 Mar, 2004 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 17 Eki, 2003 1 kayıt (commit)
-
-
Gustavo Niemeyer yazdı
-
- 02 Tem, 2003 2 kayıt (commit)
-
-
Just van Rossum yazdı
-
Just van Rossum yazdı
Use isinstance() instead of comparing types directly, to enable subclasses of str and unicode to be used as patterns. Blessed by /F.
-
- 19 Nis, 2003 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 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.
-
- 24 Şub, 2003 1 kayıt (commit)
-
-
Guido van Rossum yazdı
The problem is in sre_compile.py: the call to _compile_charset near the end of _compile_info forgets to pass in the flags, so that the info charset is not compiled with re.U. (The info charset is used when searching to find the first character at which a match could start; it is not generated for patterns beginning with a repeat like '\w{1}'.)
-
- 26 Eyl, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Will backport to 2.2
-
- 27 Haz, 2002 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
-
- 02 Haz, 2002 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 04 Eyl, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 21 Tem, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
+ test_quopri.py relied on significant trailing spaces. Fixed. + test_dircache.py (still) doesn't work on Windows (directory mtime on Windows doesn't work like it does on Unix).
-
- 19 Tem, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 02 Tem, 2001 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
speedups for certain unicode character ranges.
-
- 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 1 kayıt (commit)
-
-
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)
-
- 15 Ock, 2001 2 kayıt (commit)
-
-
Fredrik Lundh yazdı
uppercase strings also when the IGNORECASE flag is set (bug #128899) (also added test cases for recently fixed bugs to the regression suite -- or in other words, check in re_tests.py too...)
-
Fredrik Lundh yazdı
by compiler/engine mismatches
-
- 14 Ock, 2001 1 kayıt (commit)
-
-
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)
-
- 07 Eki, 2000 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
-
- 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
-
- 05 Tem, 2000 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
- reorganized some code to get rid of -Wall and -W4 warnings - fixed default argument handling for sub/subn/split methods (reported by Peter Schneider-Kamp).
-
- 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...
-
- 02 Tem, 2000 3 kayıt (commit)
-
-
Fredrik Lundh yazdı
"lastgroup" is the name of the last matched capturing group, "lastindex" is the index of the same group. if no group was matched, both attributes are set to None. the (?P#) feature will be removed in the next relase.
-
Fredrik Lundh yazdı
used by the code generator) - changed max repeat value in engine (to match earlier array fix) - added experimental "which part matched?" mechanism to sre; see http://hem.passagen.se/eff/2000_07_01_bot-archive.htm#416954 or python-dev for details.
-
Fredrik Lundh yazdı
speedup for some tests, including the python tokenizer. -- added support for an optional charset anchor to the engine (currently unused by the code generator). -- removed workaround for array module bug.
-
- 01 Tem, 2000 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
-- changed 1.6 to 2.0 in the file headers -- fixed ISALNUM macro for the unicode locale. this solution isn't perfect, but the best I can do with Python's current unicode database.
-