diff options
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() |