diff options
author | njsmith <njs@pobox.com> | 2013-03-05 12:20:10 -0800 |
---|---|---|
committer | njsmith <njs@pobox.com> | 2013-03-05 12:20:10 -0800 |
commit | 9311fb7e861e2c8eb686abded01c059b49f0b5e4 (patch) | |
tree | 042f0111af21c91c8160037d4b5ceba01baacd53 /numpy/distutils/fcompiler | |
parent | 3ba223e867dd6a2bda130d0630ee9aad3c32ae97 (diff) | |
parent | baeaeac6885d67238321101863a7753d366c535e (diff) | |
download | numpy-9311fb7e861e2c8eb686abded01c059b49f0b5e4.tar.gz |
Merge pull request #3120 from charris/2to3-remove-raw_input
2to3:DEP: Remove interactive setup and gnu compiler configuration.
Diffstat (limited to 'numpy/distutils/fcompiler')
-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...') |