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/fcompiler/g95.py | |
parent | 888d6eddcb686d7b4b502b34be35be9acec84f6b (diff) | |
download | numpy-840bd64e600ac458b17fd058a181b860e87d56bd.tar.gz |
distutils: clean up imports (found by running pyflakes)
Diffstat (limited to 'numpy/distutils/fcompiler/g95.py')
-rw-r--r-- | numpy/distutils/fcompiler/g95.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/numpy/distutils/fcompiler/g95.py b/numpy/distutils/fcompiler/g95.py index 7871decb5..6a3545582 100644 --- a/numpy/distutils/fcompiler/g95.py +++ b/numpy/distutils/fcompiler/g95.py @@ -1,9 +1,5 @@ # http://g95.sourceforge.net/ -import os -import sys - -from numpy.distutils.cpuinfo import cpu from numpy.distutils.fcompiler import FCompiler compilers = ['G95FCompiler'] @@ -43,8 +39,6 @@ class G95FCompiler(FCompiler): if __name__ == '__main__': from distutils import log log.set_verbosity(2) - from numpy.distutils.fcompiler import new_fcompiler - #compiler = new_fcompiler(compiler='g95') compiler = G95FCompiler() compiler.customize() print compiler.get_version() |