summaryrefslogtreecommitdiffstats
path: root/Lib/sre_parse.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-02-11 18:18:29 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2002-02-11 18:18:29 (GMT)
commitf7fdedc320b9e2b12d0762636fdfbc1b1e72d2c8 (patch)
treeb63caf40ee0cd4f2d0acd2c413b28822d4b7b5fc /Lib/sre_parse.py
parentaa38aa54359104364ef0c929c836b359af39de3c (diff)
downloadcpython-f7fdedc320b9e2b12d0762636fdfbc1b1e72d2c8.zip
cpython-f7fdedc320b9e2b12d0762636fdfbc1b1e72d2c8.tar.gz
cpython-f7fdedc320b9e2b12d0762636fdfbc1b1e72d2c8.tar.bz2
SF #515022 remove unused variable
Diffstat (limited to 'Lib/sre_parse.py')
-rw-r--r--Lib/sre_parse.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/sre_parse.py b/Lib/sre_parse.py
index f6b53de..0320885 100644
--- a/Lib/sre_parse.py
+++ b/Lib/sre_parse.py
@@ -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