diff options
author | Steve Dower <steve.dower@microsoft.com> | 2014-12-16 04:45:23 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2014-12-16 04:45:23 (GMT) |
commit | 09bd9ec9b3c563915b6428459032de6cda6c1336 (patch) | |
tree | 6d6cea9df4178ef34de0c3ffd39b9ee33f3b7c86 /Lib/distutils | |
parent | 89fc3caedb81dcca51c996c36ae8c6060d2f4e8f (diff) | |
download | cpython-09bd9ec9b3c563915b6428459032de6cda6c1336.zip cpython-09bd9ec9b3c563915b6428459032de6cda6c1336.tar.gz cpython-09bd9ec9b3c563915b6428459032de6cda6c1336.tar.bz2 |
Fixes distutils adding/expecting too many _d suffixes.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/command/build_ext.py | 3 | ||||
-rw-r--r-- | Lib/distutils/tests/test_install.py | 2 |
2 files changed, 0 insertions, 5 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index 605efbd..c5a3ce1 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -691,10 +691,7 @@ class build_ext(Command): """ from distutils.sysconfig import get_config_var ext_path = ext_name.split('.') - # extensions in debug_mode are named 'module_d.pyd' under windows ext_suffix = get_config_var('EXT_SUFFIX') - if os.name == 'nt' and self.debug: - return os.path.join(*ext_path) + '_d' + ext_suffix return os.path.join(*ext_path) + ext_suffix def get_export_symbols(self, ext): diff --git a/Lib/distutils/tests/test_install.py b/Lib/distutils/tests/test_install.py index 18e1e57..9313330 100644 --- a/Lib/distutils/tests/test_install.py +++ b/Lib/distutils/tests/test_install.py @@ -20,8 +20,6 @@ from distutils.tests import support def _make_ext_name(modname): - if os.name == 'nt' and sys.executable.endswith('_d.exe'): - modname += '_d' return modname + sysconfig.get_config_var('EXT_SUFFIX') |