From: Eric S. Raymond Date: Tue, 17 Apr 2001 17:20:19 +0000 (+0000) Subject: Unused variable (caught by PyChecker) removed. X-Git-Tag: v2.2a3~2016 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bc41957d2b58dfaae24e8a996e3e7c4fe3b475dd;p=thirdparty%2FPython%2Fcpython.git Unused variable (caught by PyChecker) removed. --- diff --git a/Lib/shlex.py b/Lib/shlex.py index 97b8f2e5c041..e50b9adf904e 100644 --- a/Lib/shlex.py +++ b/Lib/shlex.py @@ -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':