[Python-checkins] CVS: distutils/distutils cmd.py,1.11,1.12

Greg Ward python-dev@python.org
Wed, 24 May 2000 18:26:25 -0700


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

Modified Files:
	cmd.py 
Log Message:
Added comment to remind us of the (temporary?) obsolescense of the
'install_misc' class.

Index: cmd.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/cmd.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** cmd.py	2000/05/23 01:54:17	1.11
--- cmd.py	2000/05/25 01:26:23	1.12
***************
*** 7,11 ****
  # (extricated from core.py; actually dates back to the beginning)
  
! __revision__ = "$Id: cmd.py,v 1.11 2000/05/23 01:54:17 gward Exp $"
  
  import sys, os, string
--- 7,11 ----
  # (extricated from core.py; actually dates back to the beginning)
  
! __revision__ = "$Id: cmd.py,v 1.12 2000/05/25 01:26:23 gward Exp $"
  
  import sys, os, string
***************
*** 344,347 ****
--- 344,352 ----
  # class Command
  
+ 
+ # XXX 'install_misc' class not currently used -- it was the base class for
+ # both 'install_scripts' and 'install_data', but they outgrew it.  It might
+ # still be useful for 'install_headers', though, so I'm keeping it around
+ # for the time being.
  
  class install_misc (Command):