summaryrefslogtreecommitdiffstats
path: root/Lib/sre_parse.py
diff options
context:
space:
mode:
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