diff options
author | Greg Ward <gward@python.net> | 2000-03-18 17:36:09 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-03-18 17:36:09 (GMT) |
commit | fb4ece7feade0c22d24916ad8bf6b856863bee32 (patch) | |
tree | 9c35a2ce31966a994901b26e45d45106a8b3b20a | |
parent | 89ccb984f013a3ad5664982189b8d29e944f1375 (diff) | |
download | cpython-fb4ece7feade0c22d24916ad8bf6b856863bee32.zip cpython-fb4ece7feade0c22d24916ad8bf6b856863bee32.tar.gz cpython-fb4ece7feade0c22d24916ad8bf6b856863bee32.tar.bz2 |
Simplified doc string.
Added 'clean' to list of commands.
-rw-r--r-- | Lib/distutils/command/__init__.py | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py index 40595ba..d2b37a8 100644 --- a/Lib/distutils/command/__init__.py +++ b/Lib/distutils/command/__init__.py @@ -1,17 +1,7 @@ """distutils.command Package containing implementation of all the standard Distutils -commands. Currently this means: - - build - build_py - build_ext - install - install_py - install_ext - dist - -but this list will undoubtedly grow with time.""" +commands.""" __revision__ = "$Id$" @@ -21,5 +11,6 @@ __all__ = ['build', 'install', 'install_py', 'install_ext', + 'clean', 'sdist', ] |