diff options
Diffstat (limited to 'numpy/distutils/fcompiler/gnu.py')
-rw-r--r-- | numpy/distutils/fcompiler/gnu.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/fcompiler/gnu.py b/numpy/distutils/fcompiler/gnu.py index a2e613d0c..c26e81fcd 100644 --- a/numpy/distutils/fcompiler/gnu.py +++ b/numpy/distutils/fcompiler/gnu.py @@ -372,10 +372,11 @@ def _can_target(cmd, arch): if __name__ == '__main__': from distutils import log log.set_verbosity(2) + compiler = GnuFCompiler() compiler.customize() print(compiler.get_version()) - raw_input('Press ENTER to continue...') + try: compiler = Gnu95FCompiler() compiler.customize() @@ -383,4 +384,3 @@ if __name__ == '__main__': except Exception: msg = get_exception() print(msg) - raw_input('Press ENTER to continue...') |