summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/msvccompiler.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-08-02 00:01:56 (GMT)
committerGreg Ward <gward@python.net>2000-08-02 00:01:56 (GMT)
commit04c90fc475d4dbd0ea74682a3e399ce93f043a2c (patch)
tree9fcbea7d907cc623eddb95c1c17f919044938f70 /Lib/distutils/msvccompiler.py
parent159eb92239c20198e9318acbe142ab3e168aae4b (diff)
downloadcpython-04c90fc475d4dbd0ea74682a3e399ce93f043a2c.zip
cpython-04c90fc475d4dbd0ea74682a3e399ce93f043a2c.tar.gz
cpython-04c90fc475d4dbd0ea74682a3e399ce93f043a2c.tar.bz2
Ditched some debugging prints.
Diffstat (limited to 'Lib/distutils/msvccompiler.py')
-rw-r--r--Lib/distutils/msvccompiler.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py
index b86e0b3..a1dedb0 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)