diff options
author | yolanda15 <yolanda15@users.noreply.github.com> | 2015-08-20 10:53:17 +0800 |
---|---|---|
committer | yolanda15 <yolanda15@users.noreply.github.com> | 2015-08-20 10:53:17 +0800 |
commit | e76eb2724f143fbba82dbbf251b1d9417376e6a2 (patch) | |
tree | 862967b486597b26f719c753007a66425a837588 /numpy/distutils/intelccompiler.py | |
parent | facea220d2e31a8e8201f546ad636b754886a88c (diff) | |
download | numpy-e76eb2724f143fbba82dbbf251b1d9417376e6a2.tar.gz |
STY: fix for PEP8 online check
Diffstat (limited to 'numpy/distutils/intelccompiler.py')
-rw-r--r-- | numpy/distutils/intelccompiler.py | 13 |
1 files changed, 7 insertions, 6 deletions
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 - |