From: Greg Ward Date: Wed, 2 Aug 2000 00:01:56 +0000 (+0000) Subject: Ditched some debugging prints. X-Git-Tag: v2.0b1~632 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=04c90fc475d4dbd0ea74682a3e399ce93f043a2c;p=python Ditched some debugging prints. --- diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py index b86e0b3023..a1dedb0e53 100644 --- a/Lib/distutils/msvccompiler.py +++ b/Lib/distutils/msvccompiler.py @@ -397,9 +397,6 @@ class MSVCCompiler (CCompiler) : if extra_postargs: ld_args.extend(extra_postargs) - print "link_shared_object():" - print " output_filename =", output_filename - print " mkpath'ing:", os.path.dirname (output_filename) self.mkpath (os.path.dirname (output_filename)) try: self.spawn ([self.link] + ld_args)