From f7fdedc320b9e2b12d0762636fdfbc1b1e72d2c8 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Mon, 11 Feb 2002 18:18:29 +0000 Subject: [PATCH] SF #515022 remove unused variable --- Lib/sre_parse.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/sre_parse.py b/Lib/sre_parse.py index f6b53de6ea2..0320885c67f 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