| Linux server27.hostingraja.org 2.6.32-954.3.5.lve1.4.93.el6.x86_64 #1 SMP Wed Oct 4 17:04:29 UTC 2023 x86_64 Path : /usr/lib64/python2.6/site-packages/numpy/distutils/fcompiler/ |
| Current File : //usr/lib64/python2.6/site-packages/numpy/distutils/fcompiler/none.py |
from numpy.distutils.fcompiler import FCompiler
compilers = ['NoneFCompiler']
class NoneFCompiler(FCompiler):
compiler_type = 'none'
description = 'Fake Fortran compiler'
executables = {'compiler_f77' : None,
'compiler_f90' : None,
'compiler_fix' : None,
'linker_so' : None,
'linker_exe' : None,
'archiver' : None,
'ranlib' : None,
'version_cmd' : None,
}
def find_executables(self):
pass
if __name__ == '__main__':
from distutils import log
log.set_verbosity(2)
compiler = NoneFCompiler()
compiler.customize()
print compiler.get_version()