mirror of
https://github.com/python/cpython.git
synced 2025-10-22 22:53:06 +00:00
Remove some debugging output from the last change.
This commit is contained in:
parent
ecce14522c
commit
47ec20757d
1 changed files with 0 additions and 7 deletions
|
@ -752,9 +752,6 @@ class Distribution:
|
||||||
|
|
||||||
Returns the reinitialized command object.
|
Returns the reinitialized command object.
|
||||||
"""
|
"""
|
||||||
print "reinitialize_command: command=%s" % command
|
|
||||||
print " before: have_run =", self.have_run
|
|
||||||
|
|
||||||
from distutils.cmd import Command
|
from distutils.cmd import Command
|
||||||
if not isinstance(command, Command):
|
if not isinstance(command, Command):
|
||||||
command_name = command
|
command_name = command
|
||||||
|
@ -769,11 +766,7 @@ class Distribution:
|
||||||
self.have_run[command_name] = 0
|
self.have_run[command_name] = 0
|
||||||
self._set_command_options(command)
|
self._set_command_options(command)
|
||||||
|
|
||||||
print " after: have_run =", self.have_run
|
|
||||||
|
|
||||||
if reinit_subcommands:
|
if reinit_subcommands:
|
||||||
print (" reinitializing sub-commands: %s" %
|
|
||||||
command.get_sub_commands())
|
|
||||||
for sub in command.get_sub_commands():
|
for sub in command.get_sub_commands():
|
||||||
self.reinitialize_command(sub, reinit_subcommands)
|
self.reinitialize_command(sub, reinit_subcommands)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue