From: Greg Ward Date: Thu, 25 May 2000 01:26:23 +0000 (+0000) Subject: Added comment to remind us of the (temporary?) obsolescense of the X-Git-Tag: v2.0b1~1684 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=029e3027869eb730af2b9c92c1268c03ec1dda20;p=thirdparty%2FPython%2Fcpython.git Added comment to remind us of the (temporary?) obsolescense of the 'install_misc' class. --- diff --git a/Lib/distutils/cmd.py b/Lib/distutils/cmd.py index 0cf88d41f5e0..09727331d485 100644 --- a/Lib/distutils/cmd.py +++ b/Lib/distutils/cmd.py @@ -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.