summaryrefslogtreecommitdiff
path: root/numpy/distutils/fcompiler/ibm.py
diff options
context:
space:
mode:
authorcookedm <cookedm@localhost>2007-05-25 19:38:39 +0000
committercookedm <cookedm@localhost>2007-05-25 19:38:39 +0000
commit840bd64e600ac458b17fd058a181b860e87d56bd (patch)
tree23d37b20ed95ceda6caabf11a9bb2a629466068e /numpy/distutils/fcompiler/ibm.py
parent888d6eddcb686d7b4b502b34be35be9acec84f6b (diff)
downloadnumpy-840bd64e600ac458b17fd058a181b860e87d56bd.tar.gz
distutils: clean up imports (found by running pyflakes)
Diffstat (limited to 'numpy/distutils/fcompiler/ibm.py')
-rw-r--r--numpy/distutils/fcompiler/ibm.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/numpy/distutils/fcompiler/ibm.py b/numpy/distutils/fcompiler/ibm.py
index a06618668..4694ad73f 100644
--- a/numpy/distutils/fcompiler/ibm.py
+++ b/numpy/distutils/fcompiler/ibm.py
@@ -5,7 +5,6 @@ import sys
from numpy.distutils.fcompiler import FCompiler
from numpy.distutils.exec_command import exec_command, find_executable
from distutils import log
-from distutils.sysconfig import get_python_lib
compilers = ['IBMFCompiler']
@@ -91,10 +90,7 @@ class IBMFCompiler(FCompiler):
return ['-O5']
if __name__ == '__main__':
- from distutils import log
log.set_verbosity(2)
- from numpy.distutils.fcompiler import new_fcompiler
- #compiler = new_fcompiler(compiler='ibm')
- compiler = IbmFCompiler()
+ compiler = IBMFCompiler()
compiler.customize()
print compiler.get_version()