From 1049f2af91064f8ce9d365d09afffb316625b4c8 Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Tue, 22 Mar 2011 14:32:26 +0100 Subject: BUG: fix indentation issue in distutils/intelccompiler.py --- numpy/distutils/intelccompiler.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'numpy/distutils') diff --git a/numpy/distutils/intelccompiler.py b/numpy/distutils/intelccompiler.py index b82445ab8..9cff858ce 100644 --- a/numpy/distutils/intelccompiler.py +++ b/numpy/distutils/intelccompiler.py @@ -1,12 +1,8 @@ - from distutils.unixccompiler import UnixCCompiler from numpy.distutils.exec_command import find_executable class IntelCCompiler(UnixCCompiler): - - """ A modified Intel compiler compatible with an gcc built Python. - """ - + """ A modified Intel compiler compatible with an gcc built Python.""" compiler_type = 'intel' cc_exe = 'icc' cc_args = 'fPIC' @@ -31,10 +27,8 @@ class IntelItaniumCCompiler(IntelCCompiler): break class IntelEM64TCCompiler(UnixCCompiler): - -""" A modified Intel x86_64 compiler compatible with a 64bit gcc built Python. + """ A modified Intel x86_64 compiler compatible with a 64bit gcc built Python. """ - compiler_type = 'intelem' cc_exe = 'icc -m64 -fPIC' cc_args = "-fPIC" -- cgit v1.2.1