From: Gustavo Niemeyer Date: Fri, 3 Sep 2004 20:15:56 +0000 (+0000) Subject: Minor aesthetic change in sre_parse.py, as suggested by Mike Coleman. X-Git-Tag: v2.4b1~347 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f5a1599ebe838ebd99ef966e56debb48d3826d30;p=python Minor aesthetic change in sre_parse.py, as suggested by Mike Coleman. --- diff --git a/Lib/sre_parse.py b/Lib/sre_parse.py index 3e27145074..5066615937 100644 --- a/Lib/sre_parse.py +++ b/Lib/sre_parse.py @@ -738,8 +738,8 @@ def parse_template(source, pattern): isoctal = False if s.next in DIGITS: this = this + sget() - if (c in OCTDIGITS and s.next in OCTDIGITS and - this[2] in OCTDIGITS): + if (c in OCTDIGITS and this[2] in OCTDIGITS and + s.next in OCTDIGITS): this = this + sget() isoctal = True literal(makechar(int(this[1:], 8) & 0xff))