diff options
author | Guido van Rossum <guido@python.org> | 2001-08-13 15:48:06 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-08-13 15:48:06 +0000 |
commit | 8f15bd8500ea21bbfbc04b6498edfc3a55dd9be7 (patch) | |
tree | 4768589f1e33c00448073e49a8dfa743fae741d3 | |
parent | ef8f4dee07d1f7140ce1e4f8977dcde3ce9b96e8 (diff) | |
download | cpython-git-8f15bd8500ea21bbfbc04b6498edfc3a55dd9be7.tar.gz |
Remove redundant 'import string' (PyChecker).
-rwxr-xr-x | Lib/token.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/token.py b/Lib/token.py index eafbd7b2fe..c77d3430be 100755 --- a/Lib/token.py +++ b/Lib/token.py @@ -84,7 +84,6 @@ def ISEOF(x): def main(): import re - import string import sys args = sys.argv[1:] inFileName = args and args[0] or "Include/token.h" |