diff options
author | Guido van Rossum <guido@python.org> | 2001-08-13 15:48:06 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-08-13 15:48:06 (GMT) |
commit | 8f15bd8500ea21bbfbc04b6498edfc3a55dd9be7 (patch) | |
tree | 4768589f1e33c00448073e49a8dfa743fae741d3 /Lib/token.py | |
parent | ef8f4dee07d1f7140ce1e4f8977dcde3ce9b96e8 (diff) | |
download | cpython-8f15bd8500ea21bbfbc04b6498edfc3a55dd9be7.zip cpython-8f15bd8500ea21bbfbc04b6498edfc3a55dd9be7.tar.gz cpython-8f15bd8500ea21bbfbc04b6498edfc3a55dd9be7.tar.bz2 |
Remove redundant 'import string' (PyChecker).
Diffstat (limited to 'Lib/token.py')
-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 eafbd7b..c77d343 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" |