- 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...
-
- 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 2 kayıt (commit)
-
-
Fredrik Lundh yazdı
- minor comment touchups in the C module
-
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.
-
- 30 Haz, 2000 7 kayıt (commit)
-
-
Fredrik Lundh yazdı
- fixed parser flag propagation (of all stupid bugs...)
-
Fredrik Lundh yazdı
- removed evil tabs from sre_parse and sre_compile
-
Fredrik Lundh yazdı
-- added pickling support (only works if sre is imported) -- fixed wordsize problems in engine (instead of casting literals down to the character size, cast characters up to the literal size (same as the code word size). this prevents false hits when you're matching a unicode pattern against an 8-bit string. (unfortunately, this broke another test, but I think the test should be changed in this case; more on that on python-dev) -- added sre.purge function (unofficial, clears the cache)
-
Fredrik Lundh yazdı
- untabified sre_constants.py
-
Fredrik Lundh yazdı
(closes #3 and #7 from the status report)
-
Fredrik Lundh yazdı
-
Fredrik Lundh yazdı
- fixed compiler problems when using locale/unicode flags - fixed group/octal code parsing in sub/subn templates
-
- 29 Haz, 2000 5 kayıt (commit)
-
-
Fredrik Lundh yazdı
(those semantics are weird...) - got rid of $Id$'s (for the moment, at least). in other words, there should be no more "empty" checkins. - internal: some minor cleanups.
-
Fredrik Lundh yazdı
(closes the "SRE: symbolic reference" bug)
-
Fredrik Lundh yazdı
tests in sre_patch back to previous version - fixed return value from findall - renamed a bunch of functions inside _sre (way too many leading underscores...) </F>
-
Fredrik Lundh yazdı
- removed some hacks that worked around 1.6 alpha bugs - removed bogus test code from sre_parse
-
Fredrik Lundh yazdı
-
- 09 Haz, 2000 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
latest public snapshot.""
-
- 10 Nis, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
This one should work with unicode expressions, and compile a bit more silently.
-
- 02 Nis, 2000 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
untabifies the files. No actual code changes were made.
-
- 31 Mar, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
NOTE: THIS IS VERY ROUGH ALPHA CODE!
-