diff options
author | cookedm <cookedm@localhost> | 2007-05-25 19:38:39 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2007-05-25 19:38:39 +0000 |
commit | 840bd64e600ac458b17fd058a181b860e87d56bd (patch) | |
tree | 23d37b20ed95ceda6caabf11a9bb2a629466068e /numpy/distutils/unixccompiler.py | |
parent | 888d6eddcb686d7b4b502b34be35be9acec84f6b (diff) | |
download | numpy-840bd64e600ac458b17fd058a181b860e87d56bd.tar.gz |
distutils: clean up imports (found by running pyflakes)
Diffstat (limited to 'numpy/distutils/unixccompiler.py')
-rw-r--r-- | numpy/distutils/unixccompiler.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/numpy/distutils/unixccompiler.py b/numpy/distutils/unixccompiler.py index c205a3da6..cc3154114 100644 --- a/numpy/distutils/unixccompiler.py +++ b/numpy/distutils/unixccompiler.py @@ -3,13 +3,11 @@ unixccompiler - can handle very long argument lists for ar. """ import os -import sys import new -from distutils.errors import DistutilsExecError, LinkError, CompileError +from distutils.errors import DistutilsExecError, CompileError from distutils.unixccompiler import * - import log # Note that UnixCCompiler._compile appeared in Python 2.3 |