summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-08-26 14:30:57 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-08-26 14:30:57 (GMT)
commit3577c3cfb8f18e1f63ae56279a1adcc0c710b465 (patch)
tree3a7697d35df1103038435d205062cd256bbb5dee /Lib/distutils/tests
parentbcf147cb72070f180e97929d18f58e19157cfbb5 (diff)
parentb008d3d00c214e9d737aa0f0f20246b1b4efaa9e (diff)
downloadcpython-3577c3cfb8f18e1f63ae56279a1adcc0c710b465.zip
cpython-3577c3cfb8f18e1f63ae56279a1adcc0c710b465.tar.gz
cpython-3577c3cfb8f18e1f63ae56279a1adcc0c710b465.tar.bz2
Branch merge
Diffstat (limited to 'Lib/distutils/tests')
-rw-r--r--Lib/distutils/tests/test_install.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/distutils/tests/test_install.py b/Lib/distutils/tests/test_install.py
index 5c105af..dfc46b1 100644
--- a/Lib/distutils/tests/test_install.py
+++ b/Lib/distutils/tests/test_install.py
@@ -20,9 +20,8 @@ from distutils.tests import support
def _make_ext_name(modname):
- if os.name == 'nt':
- if sys.executable.endswith('_d.exe'):
- modname += '_d'
+ if os.name == 'nt' and sys.executable.endswith('_d.exe'):
+ modname += '_d'
return modname + sysconfig.get_config_var('SO')