From 17289426e247c27e53e13a14741a1fea573a156e Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Sat, 2 Sep 2000 07:44:32 +0000 Subject: SourceForge patch 101396, by an anonymous friend. "sre_parse.py missing '7' in DIGITS" --- Lib/sre_parse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/sre_parse.py b/Lib/sre_parse.py index a50191e..4286aca 100644 --- a/Lib/sre_parse.py +++ b/Lib/sre_parse.py @@ -17,7 +17,7 @@ MAXREPEAT = 65535 SPECIAL_CHARS = ".\\[{()*+?^$|" REPEAT_CHARS = "*+?{" -DIGITS = tuple("012345689") +DIGITS = tuple("0123456789") OCTDIGITS = tuple("01234567") HEXDIGITS = tuple("0123456789abcdefABCDEF") -- cgit v0.12