From: Greg Ward Date: Sat, 18 Mar 2000 17:36:09 +0000 (+0000) Subject: Simplified doc string. X-Git-Tag: v1.6a1~183 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fb4ece7feade0c22d24916ad8bf6b856863bee32;p=thirdparty%2FPython%2Fcpython.git Simplified doc string. Added 'clean' to list of commands. --- diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py index 40595ba949d0..d2b37a8ce1dc 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', ]