mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
SF #515022 remove unused variable
This commit is contained in:
parent
aa38aa5435
commit
f7fdedc320
1 changed files with 0 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue