]> granicus.if.org Git - python/commit
- added lookbehind support (?<=pattern), (?<!pattern).
authorFredrik Lundh <fredrik@pythonware.com>
Mon, 3 Jul 2000 18:44:21 +0000 (18:44 +0000)
committerFredrik Lundh <fredrik@pythonware.com>
Mon, 3 Jul 2000 18:44:21 +0000 (18:44 +0000)
commit6f013982366154ce570f69b6117dbcc6b1d5d89a
tree00f3bcae833f7bbcb15ba1a22ef2bdac3c148033
parent40c48685a2b16dc7fdccd82fe1d927e52ed5e3db
- added lookbehind support (?<=pattern), (?<!pattern).
  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...
Lib/sre_compile.py
Lib/sre_parse.py
Lib/test/test_sre.py
Modules/_sre.c
Modules/sre.h