summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/install_lib.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-10-03 03:32:37 (GMT)
committerGreg Ward <gward@python.net>2000-10-03 03:32:37 (GMT)
commit25a309c0a9abe33755550c2c71d0865ff6c1a72b (patch)
tree337773dcfa177b1e7e734cd67de8a3d398aae065 /Lib/distutils/command/install_lib.py
parenta9d37835adbbb209a4207e16492a75ef016b3c39 (diff)
downloadcpython-25a309c0a9abe33755550c2c71d0865ff6c1a72b.zip
cpython-25a309c0a9abe33755550c2c71d0865ff6c1a72b.tar.gz
cpython-25a309c0a9abe33755550c2c71d0865ff6c1a72b.tar.bz2
Remove some debugging prints.
Diffstat (limited to 'Lib/distutils/command/install_lib.py')
-rw-r--r--Lib/distutils/command/install_lib.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py
index 804dcff..6c4c7fe 100644
--- a/Lib/distutils/command/install_lib.py
+++ b/Lib/distutils/command/install_lib.py
@@ -71,8 +71,6 @@ class install_lib (Command):
if self.optimize is None:
self.optimize = 0
- print "install_lib: compile=%s, optimize=%s" % \
- (`self.compile`, `self.optimize`)
if type(self.optimize) is not IntType:
try:
self.optimize = int(self.optimize)