Minor code simplification

This commit is contained in:
Éric Araujo 2011-08-26 00:05:11 +02:00
parent ced7eda717
commit 1329185890

View file

@ -18,9 +18,8 @@ _CONFIG_VARS = get_config_vars()
def _make_ext_name(modname): def _make_ext_name(modname):
if os.name == 'nt': if os.name == 'nt' and sys.executable.endswith('_d.exe'):
if sys.executable.endswith('_d.exe'): modname += '_d'
modname += '_d'
return modname + get_config_var('SO') return modname + get_config_var('SO')