summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@googlemail.com>2011-03-22 14:32:26 +0100
committerRalf Gommers <ralf.gommers@googlemail.com>2011-03-23 09:07:27 +0100
commit1049f2af91064f8ce9d365d09afffb316625b4c8 (patch)
treefb2f2f8ad40e9b13764a8e741f9a71fd66aa4837 /numpy
parentc0dcaf415f7655aeeb9c78decf82eaeec4d34120 (diff)
downloadnumpy-1049f2af91064f8ce9d365d09afffb316625b4c8.tar.gz
BUG: fix indentation issue in distutils/intelccompiler.py
Diffstat (limited to 'numpy')
-rw-r--r--numpy/distutils/intelccompiler.py10
1 files changed, 2 insertions, 8 deletions
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"