Commit bbe02f04 authored by Neal Norwitz's avatar Neal Norwitz

SF #515022 remove unused variable

parent 71a1ca1e
...@@ -289,7 +289,6 @@ def _escape(source, escape, state): ...@@ -289,7 +289,6 @@ def _escape(source, escape, state):
return LITERAL, atoi(escape[1:], 8) & 0xff return LITERAL, atoi(escape[1:], 8) & 0xff
elif escape[1:2] in DIGITS: elif escape[1:2] in DIGITS:
# octal escape *or* decimal group reference (sigh) # octal escape *or* decimal group reference (sigh)
here = source.tell()
if source.next in DIGITS: if source.next in DIGITS:
escape = escape + source.get() escape = escape + source.get()
if (escape[1] in OCTDIGITS and escape[2] in OCTDIGITS and if (escape[1] in OCTDIGITS and escape[2] in OCTDIGITS and
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment