]> granicus.if.org Git - python/commitdiff
SourceForge patch 101396, by an anonymous friend.
authorTim Peters <tim.peters@gmail.com>
Sat, 2 Sep 2000 07:44:32 +0000 (07:44 +0000)
committerTim Peters <tim.peters@gmail.com>
Sat, 2 Sep 2000 07:44:32 +0000 (07:44 +0000)
"sre_parse.py missing '7' in DIGITS"

Lib/sre_parse.py

index a50191ec9b093ea163124dd6610c495d050f6758..4286aca29c9dc026d066363e0c9d607bd35553ff 100644 (file)
@@ -17,7 +17,7 @@ MAXREPEAT = 65535
 SPECIAL_CHARS = ".\\[{()*+?^$|"
 REPEAT_CHARS  = "*+?{"
 
-DIGITS = tuple("012345689")
+DIGITS = tuple("0123456789")
 
 OCTDIGITS = tuple("01234567")
 HEXDIGITS = tuple("0123456789abcdefABCDEF")