diff options
author | Greg Ward <gward@python.net> | 2000-03-31 03:52:16 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-03-31 03:52:16 (GMT) |
commit | 95c0b269de14f56a5b5d8fd0b57871b373b4b100 (patch) | |
tree | 250ab12c6427fb3d35520c33249812b8042bc338 | |
parent | 842296480e80873de5f5042da42533044a9586dd (diff) | |
download | cpython-95c0b269de14f56a5b5d8fd0b57871b373b4b100.zip cpython-95c0b269de14f56a5b5d8fd0b57871b373b4b100.tar.gz cpython-95c0b269de14f56a5b5d8fd0b57871b373b4b100.tar.bz2 |
Don't perpetrate the "_d" hack for naming debugging extensions -- that's
now done in the 'build_ext' command.
-rw-r--r-- | Lib/distutils/msvccompiler.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py index c906e11..2828711 100644 --- a/Lib/distutils/msvccompiler.py +++ b/Lib/distutils/msvccompiler.py @@ -321,10 +321,6 @@ class MSVCCompiler (CCompiler) : if debug: ldflags = self.ldflags_shared_debug - # XXX not sure this belongs here - # extensions in debug_mode are named 'module_d.pyd' - basename, ext = os.path.splitext (output_filename) - output_filename = basename + '_d' + ext else: ldflags = self.ldflags_shared |