diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-03-22 03:50:09 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-03-22 03:50:09 +0000 |
commit | 86e4a2fe34f6181688dac7b953758ce83743f77e (patch) | |
tree | ac74d7b6ed3b59f740dffbea6ca61d20136b6b63 /Lib/distutils/cygwinccompiler.py | |
parent | 7190dcde7c34b462248e53d6bf9eebeb6000adfe (diff) | |
download | cpython-86e4a2fe34f6181688dac7b953758ce83743f77e.tar.gz |
Remove redundant import
Diffstat (limited to 'Lib/distutils/cygwinccompiler.py')
-rw-r--r-- | Lib/distutils/cygwinccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/cygwinccompiler.py b/Lib/distutils/cygwinccompiler.py index f40d1a2d4a..92def164ad 100644 --- a/Lib/distutils/cygwinccompiler.py +++ b/Lib/distutils/cygwinccompiler.py @@ -365,7 +365,7 @@ def check_config_h(): # "config.h" check -- should probably be renamed... from distutils import sysconfig - import string,sys + import string # if sys.version contains GCC then python was compiled with # GCC, and the config.h file should be OK if string.find(sys.version,"GCC") >= 0: |