]> granicus.if.org Git - python/commitdiff
SF #515022 remove unused variable
authorNeal Norwitz <nnorwitz@gmail.com>
Mon, 11 Feb 2002 18:18:29 +0000 (18:18 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Mon, 11 Feb 2002 18:18:29 +0000 (18:18 +0000)
Lib/sre_parse.py

index f6b53de6ea2d34390732e1f0b881c9e0e169f518..0320885c67f9127aa0a179e913d311cfde6ce8eb 100644 (file)
@@ -289,7 +289,6 @@ def _escape(source, escape, state):
             return LITERAL, atoi(escape[1:], 8) & 0xff
         elif escape[1:2] in DIGITS:
             # octal escape *or* decimal group reference (sigh)
-            here = source.tell()
             if source.next in DIGITS:
                 escape = escape + source.get()
                 if (escape[1] in OCTDIGITS and escape[2] in OCTDIGITS and