From 7cafe4d7e466996d5fc32e871fe834e0e0c94282 Mon Sep 17 00:00:00 2001 From: Fredrik Lundh Date: Sun, 2 Jul 2000 17:33:27 +0000 Subject: - actually enabled charset anchors in the engine (still not 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. --- Lib/sre_constants.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Lib/sre_constants.py') diff --git a/Lib/sre_constants.py b/Lib/sre_constants.py index f0e45ea510..076637d86d 100644 --- a/Lib/sre_constants.py +++ b/Lib/sre_constants.py @@ -33,6 +33,7 @@ GROUP = "group" GROUP_IGNORE = "group_ignore" IN = "in" IN_IGNORE = "in_ignore" +INDEX = "index" INFO = "info" JUMP = "jump" LITERAL = "literal" @@ -90,6 +91,7 @@ OPCODES = [ CATEGORY, CHARSET, GROUP, GROUP_IGNORE, + INDEX, IN, IN_IGNORE, INFO, JUMP, -- cgit v1.2.1