[Python-checkins] CVS: distutils/distutils dist.py,1.35,1.36

Greg Ward python-dev@python.org
Sat, 16 Sep 2000 08:27:20 -0700


Update of /cvsroot/python/distutils/distutils
In directory slayer.i.sourceforge.net:/tmp/cvs-serv11880

Modified Files:
	dist.py 
Log Message:
Remove some debugging output from the last change.

Index: dist.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/dist.py,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -r1.35 -r1.36
*** dist.py	2000/09/16 15:23:28	1.35
--- dist.py	2000/09/16 15:27:17	1.36
***************
*** 753,759 ****
          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):
--- 753,756 ----
***************
*** 770,778 ****
          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)            
--- 767,771 ----