From 1229545f8998940b8bfaf0556103e4bdf266b5e1 Mon Sep 17 00:00:00 2001 From: xoviat Date: Mon, 6 Nov 2017 16:22:10 -0600 Subject: MAINT: distutils: trivial cleanups --- numpy/distutils/fcompiler/intel.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'numpy/distutils/fcompiler/intel.py') diff --git a/numpy/distutils/fcompiler/intel.py b/numpy/distutils/fcompiler/intel.py index e3b922edc..217eac8fb 100644 --- a/numpy/distutils/fcompiler/intel.py +++ b/numpy/distutils/fcompiler/intel.py @@ -215,7 +215,5 @@ class IntelEM64VisualFCompiler(IntelVisualFCompiler): if __name__ == '__main__': from distutils import log log.set_verbosity(2) - from numpy.distutils.fcompiler import new_fcompiler - compiler = new_fcompiler(compiler='intel') - compiler.customize() - print(compiler.get_version()) + from numpy.distutils import customized_fcompiler + print(customized_fcompiler(compiler='intel').get_version()) -- cgit v1.2.1