SF #515022 remove unused variable

This commit is contained in:
Neal Norwitz 2002-02-11 18:18:29 +00:00
parent aa38aa5435
commit f7fdedc320
1 changed files with 0 additions and 1 deletions

View 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