From: Neal Norwitz Date: Mon, 11 Feb 2002 18:18:29 +0000 (+0000) Subject: SF #515022 remove unused variable X-Git-Tag: v2.3c1~6692 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f7fdedc320b9e2b12d0762636fdfbc1b1e72d2c8;p=thirdparty%2FPython%2Fcpython.git SF #515022 remove unused variable --- diff --git a/Lib/sre_parse.py b/Lib/sre_parse.py index f6b53de6ea2d..0320885c67f9 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