]> granicus.if.org Git - python/commitdiff
Delete some debugging print statements.
authorGreg Ward <gward@python.net>
Mon, 10 Apr 2000 01:31:58 +0000 (01:31 +0000)
committerGreg Ward <gward@python.net>
Mon, 10 Apr 2000 01:31:58 +0000 (01:31 +0000)
Lib/distutils/command/build.py
Lib/distutils/command/build_py.py

index bca0ece808f7bf97cf713541890f7ca728fb2508..7fb0b566573ec2ff6a7aecddbc21345dfcedf5a0 100644 (file)
@@ -45,8 +45,6 @@ class build (Command):
 
     def finalize_options (self):
 
-        print "build.finalize: force=%s" % self.force
-
         # Need this to name platform-specific directories, but sys.platform
         # is not enough -- it only names the OS and version, not the
         # hardware architecture!
index d719cec8d92e173a60679ace2b0826dfb5e6beff..2a1fdd62c9a92ce72bec953f0af8c50b01bc3e0a 100644 (file)
@@ -32,11 +32,9 @@ class build_py (Command):
         self.force = None
 
     def finalize_options (self):
-        print "build_py.finalize: force=%s" % self.force
         self.set_undefined_options ('build',
                                     ('build_lib', 'build_lib'),
                                     ('force', 'force'))
-        print "build_py.finalize: force=%s" % self.force
 
         # Get the distribution options that are aliases for build_py
         # options -- list of packages and list of modules.