From: Tim Peters Date: Sat, 2 Sep 2000 07:44:32 +0000 (+0000) Subject: SourceForge patch 101396, by an anonymous friend. X-Git-Tag: v2.0b1~55 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=17289426e247c27e53e13a14741a1fea573a156e;p=thirdparty%2FPython%2Fcpython.git SourceForge patch 101396, by an anonymous friend. "sre_parse.py missing '7' in DIGITS" --- diff --git a/Lib/sre_parse.py b/Lib/sre_parse.py index a50191ec9b09..4286aca29c9d 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")