]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added comment to remind us of the (temporary?) obsolescense of the
authorGreg Ward <gward@python.net>
Thu, 25 May 2000 01:26:23 +0000 (01:26 +0000)
committerGreg Ward <gward@python.net>
Thu, 25 May 2000 01:26:23 +0000 (01:26 +0000)
'install_misc' class.

Lib/distutils/cmd.py

index 0cf88d41f5e09a466a49eeda672bc4ba0697fe17..09727331d485215ff3351ade27078039981c4375 100644 (file)
@@ -344,6 +344,11 @@ class Command:
 # 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):
     """Common base class for installing some files in a subdirectory.
     Currently used by install_data and install_scripts.