diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-02-11 18:18:29 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-02-11 18:18:29 (GMT) |
commit | f7fdedc320b9e2b12d0762636fdfbc1b1e72d2c8 (patch) | |
tree | b63caf40ee0cd4f2d0acd2c413b28822d4b7b5fc /Lib/sre_parse.py | |
parent | aa38aa54359104364ef0c929c836b359af39de3c (diff) | |
download | cpython-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.py | 1 |
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 |