diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-04-08 00:38:42 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-04-08 00:38:42 (GMT) |
commit | 3664111fb139546ca4d6a6060c52c8672f3c5765 (patch) | |
tree | 67398591482f35749aa136448435d4d0f3c7adf8 /Lib/tabnanny.py | |
parent | 388ed08cbf89ec362541bb165045739866fe9c98 (diff) | |
download | cpython-3664111fb139546ca4d6a6060c52c8672f3c5765.zip cpython-3664111fb139546ca4d6a6060c52c8672f3c5765.tar.gz cpython-3664111fb139546ca4d6a6060c52c8672f3c5765.tar.bz2 |
Get rid of useless string import, as reported by Neal Norwitz's PyChecker.py
on c.l.py.
Diffstat (limited to 'Lib/tabnanny.py')
-rwxr-xr-x | Lib/tabnanny.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/tabnanny.py b/Lib/tabnanny.py index c945dd5..30f2e4b 100755 --- a/Lib/tabnanny.py +++ b/Lib/tabnanny.py @@ -12,7 +12,6 @@ __version__ = "6" import os import sys -import string import getopt import tokenize |