diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-04-17 17:20:19 (GMT) |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-04-17 17:20:19 (GMT) |
commit | bc41957d2b58dfaae24e8a996e3e7c4fe3b475dd (patch) | |
tree | e0570e3a84f48a5d2906bf856ae77bd87ea6418d /Lib/shlex.py | |
parent | 2fb17ba2fa19d15d2c422ef7c2b45dca4f4de140 (diff) | |
download | cpython-bc41957d2b58dfaae24e8a996e3e7c4fe3b475dd.zip cpython-bc41957d2b58dfaae24e8a996e3e7c4fe3b475dd.tar.gz cpython-bc41957d2b58dfaae24e8a996e3e7c4fe3b475dd.tar.bz2 |
Unused variable (caught by PyChecker) removed.
Diffstat (limited to 'Lib/shlex.py')
-rw-r--r-- | Lib/shlex.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/shlex.py b/Lib/shlex.py index 97b8f2e..e50b9ad 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': |