Skip to content

Commit

Permalink
BUG: fix indentation issue in distutils/intelccompiler.py
Browse files Browse the repository at this point in the history
(backport of 1049f2a)
  • Loading branch information
rgommers committed Mar 23, 2011
1 parent 27e928f commit 35676ee
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions 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'
Expand All @@ -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"
Expand Down

0 comments on commit 35676ee

Please sign in to comment.