[Python-checkins] CVS: python/dist/src/Lib sre_parse.py,1.51,1.52

Neal Norwitz nnorwitz@users.sourceforge.net
Mon, 11 Feb 2002 10:18:31 -0800


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv12281

Modified Files:
	sre_parse.py 
Log Message:
SF #515022 remove unused variable

Index: sre_parse.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/sre_parse.py,v
retrieving revision 1.51
retrieving revision 1.52
diff -C2 -d -r1.51 -r1.52
*** sre_parse.py	9 Dec 2001 16:13:15 -0000	1.51
--- sre_parse.py	11 Feb 2002 18:18:29 -0000	1.52
***************
*** 290,294 ****
          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()
--- 290,293 ----