Unused variable (caught by PyChecker) removed.
authorEric S. Raymond <esr@thyrsus.com>
Tue, 17 Apr 2001 17:20:19 +0000 (17:20 +0000)
committerEric S. Raymond <esr@thyrsus.com>
Tue, 17 Apr 2001 17:20:19 +0000 (17:20 +0000)
Lib/shlex.py

index 97b8f2e5c041a678829bc1440b4eb1c55d7e1b62..e50b9adf904ee4717da1eccc728db65d56a2f377 100644 (file)
@@ -96,7 +96,6 @@ class shlex:
 
     def read_token(self):
         "Read a token from the input stream (no pushback or inclusions)"
-        tok = ''
         while 1:
             nextchar = self.instream.read(1)
             if nextchar == '\n':