[Python-checkins] CVS: python/dist/src/Lib shlex.py,1.15,1.16

Eric S. Raymond esr@users.sourceforge.net
Tue, 17 Apr 2001 10:20:21 -0700


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

Modified Files:
	shlex.py 
Log Message:
Unused variable (caught by PyChecker) removed.


Index: shlex.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/shlex.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -r1.15 -r1.16
*** shlex.py	2001/02/15 22:15:13	1.15
--- shlex.py	2001/04/17 17:20:19	1.16
***************
*** 97,101 ****
      def read_token(self):
          "Read a token from the input stream (no pushback or inclusions)"
-         tok = ''
          while 1:
              nextchar = self.instream.read(1)
--- 97,100 ----