summaryrefslogtreecommitdiff
path: root/Lib/distutils/dist.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-09-16 15:27:17 +0000
committerGreg Ward <gward@python.net>2000-09-16 15:27:17 +0000
commita31a2fa5936fb45fd5fd7c41e541c22cb0f5e766 (patch)
tree31dec30fbb4e69c356b0fe37383cd9f2e7b9394d /Lib/distutils/dist.py
parentde3b61ceeb819725438480f8d6a8459a6e7c3ddc (diff)
downloadcpython-a31a2fa5936fb45fd5fd7c41e541c22cb0f5e766.tar.gz
Remove some debugging output from the last change.
Diffstat (limited to 'Lib/distutils/dist.py')
-rw-r--r--Lib/distutils/dist.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py
index b126a99757..c5fe86ebbf 100644
--- a/Lib/distutils/dist.py
+++ b/Lib/distutils/dist.py
@@ -752,9 +752,6 @@ class Distribution:
Returns the reinitialized command object.
"""
- print "reinitialize_command: command=%s" % command
- print " before: have_run =", self.have_run
-
from distutils.cmd import Command
if not isinstance(command, Command):
command_name = command
@@ -769,11 +766,7 @@ class Distribution:
self.have_run[command_name] = 0
self._set_command_options(command)
- print " after: have_run =", self.have_run
-
if reinit_subcommands:
- print (" reinitializing sub-commands: %s" %
- command.get_sub_commands())
for sub in command.get_sub_commands():
self.reinitialize_command(sub, reinit_subcommands)