From: Greg Ward Date: Tue, 3 Oct 2000 03:32:37 +0000 (+0000) Subject: Remove some debugging prints. X-Git-Tag: v2.0c1~152 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=25a309c0a9abe33755550c2c71d0865ff6c1a72b;p=thirdparty%2FPython%2Fcpython.git Remove some debugging prints. --- diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py index 804dcffa604b..6c4c7fe9935a 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)