projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2fb17ba
)
Unused variable (caught by PyChecker) removed.
author
Eric S. Raymond
<esr@thyrsus.com>
Tue, 17 Apr 2001 17:20:19 +0000
(17:20 +0000)
committer
Eric S. Raymond
<esr@thyrsus.com>
Tue, 17 Apr 2001 17:20:19 +0000
(17:20 +0000)
Lib/shlex.py
patch
|
blob
|
history
diff --git
a/Lib/shlex.py
b/Lib/shlex.py
index 97b8f2e5c041a678829bc1440b4eb1c55d7e1b62..e50b9adf904ee4717da1eccc728db65d56a2f377 100644
(file)
--- 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':