From e76eb2724f143fbba82dbbf251b1d9417376e6a2 Mon Sep 17 00:00:00 2001 From: yolanda15 Date: Thu, 20 Aug 2015 10:53:17 +0800 Subject: STY: fix for PEP8 online check --- numpy/distutils/intelccompiler.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'numpy/distutils/intelccompiler.py') diff --git a/numpy/distutils/intelccompiler.py b/numpy/distutils/intelccompiler.py index 2206f7fcb..81009bb6f 100644 --- a/numpy/distutils/intelccompiler.py +++ b/numpy/distutils/intelccompiler.py @@ -57,9 +57,10 @@ class IntelEM64TCCompiler(UnixCCompiler): if sys.platform == 'win32': from distutils.msvc9compiler import MSVCCompiler + class IntelCCompilerW(MSVCCompiler): """ - A modified Intel compiler on Windows compatible with an MSVC-built Python. + A modified Intel compiler compatible with an MSVC-built Python. """ compiler_type = 'intelw' @@ -73,14 +74,15 @@ if sys.platform == 'win32': self.cc = self.find_exe("icl.exe") self.lib = self.find_exe("xilib") self.linker = self.find_exe("xilink") - self.compile_options = ['/nologo', '/O3', '/MD', '/W3', '/Qstd=c99'] + self.compile_options = ['/nologo', '/O3', '/MD', '/W3', + '/Qstd=c99'] self.compile_options_debug = ['/nologo', '/Od', '/MDd', '/W3', - '/Qstd=c99', '/Z7', '/D_DEBUG'] - + '/Qstd=c99', '/Z7', '/D_DEBUG'] class IntelEM64TCCompilerW(IntelCCompilerW): """ - A modified Intel x86_64 compiler compatible with a 64bit MSVC-built Python. + A modified Intel x86_64 compiler compatible with + a 64bit MSVC-built Python. """ compiler_type = 'intelemw' @@ -89,4 +91,3 @@ if sys.platform == 'win32': version_match = simple_version_match(start='Intel\(R\).*?64,') self.__version = version_match - -- cgit v1.2.1