diff options
author | Greg Ward <gward@python.net> | 2000-05-25 01:26:23 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-05-25 01:26:23 (GMT) |
commit | 029e3027869eb730af2b9c92c1268c03ec1dda20 (patch) | |
tree | 8792f8f59d12004717f2c45cc567a5166f1620db /Lib/distutils/cmd.py | |
parent | e3d17526b27e1bb23fd2d1ebf57a5be979f73b45 (diff) | |
download | cpython-029e3027869eb730af2b9c92c1268c03ec1dda20.zip cpython-029e3027869eb730af2b9c92c1268c03ec1dda20.tar.gz cpython-029e3027869eb730af2b9c92c1268c03ec1dda20.tar.bz2 |
Added comment to remind us of the (temporary?) obsolescense of the
'install_misc' class.
Diffstat (limited to 'Lib/distutils/cmd.py')
-rw-r--r-- | Lib/distutils/cmd.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/distutils/cmd.py b/Lib/distutils/cmd.py index 0cf88d4..0972733 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. |