diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-03-22 03:50:09 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-03-22 03:50:09 (GMT) |
commit | 6e9c0baa659a2e28d0d4c979ec69d3a6e545643b (patch) | |
tree | 4bfea6807dd35b3e2d905dd9712de87b148473b0 /Lib/distutils/cygwinccompiler.py | |
parent | ac20f773f3b625121ff5f593fbb9f0934bfb8d8e (diff) | |
download | cpython-6e9c0baa659a2e28d0d4c979ec69d3a6e545643b.zip cpython-6e9c0baa659a2e28d0d4c979ec69d3a6e545643b.tar.gz cpython-6e9c0baa659a2e28d0d4c979ec69d3a6e545643b.tar.bz2 |
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 f40d1a2..92def16 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: |