summaryrefslogtreecommitdiff
path: root/numpy/core/setup_common.py
diff options
context:
space:
mode:
authorschnaitterm <schnaitterm@users.noreply.github.com>2017-11-30 14:52:11 -0500
committerGitHub <noreply@github.com>2017-11-30 14:52:11 -0500
commita81b9abe8f2f44c74e0728c86196882e61bf534a (patch)
tree908ece9b1082e1441fdd5fdf3e8ac6d8e29ab443 /numpy/core/setup_common.py
parent492f3bd211f87e175e9e87647537079536bdf98f (diff)
downloadnumpy-a81b9abe8f2f44c74e0728c86196882e61bf534a.tar.gz
fix line continuation style for if statement
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r--numpy/core/setup_common.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py
index 36988475a..bd093c5c8 100644
--- a/numpy/core/setup_common.py
+++ b/numpy/core/setup_common.py
@@ -219,8 +219,9 @@ def check_long_double_representation(cmd):
# Disable multi-file interprocedural optimization in the Intel compiler on Linux
# which generates intermediary object files and prevents checking the
# float representation.
- elif sys.platform != "win32" and cmd.compiler.compiler_type.startswith('intel') \
- and '-ipo' in cmd.compiler.cc_exe:
+ elif (sys.platform != "win32"
+ and cmd.compiler.compiler_type.startswith('intel')
+ and '-ipo' in cmd.compiler.cc_exe):
newcompiler = cmd.compiler.cc_exe.replace(' -ipo', '')
cmd.compiler.set_executables(
compiler=newcompiler,