]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Simplified doc string.
authorGreg Ward <gward@python.net>
Sat, 18 Mar 2000 17:36:09 +0000 (17:36 +0000)
committerGreg Ward <gward@python.net>
Sat, 18 Mar 2000 17:36:09 +0000 (17:36 +0000)
Added 'clean' to list of commands.

Lib/distutils/command/__init__.py

index 40595ba949d0d64c0dfdcfc583b100fb1bc5ffe2..d2b37a8ce1dc7ea8296661e78a510870dad4091c 100644 (file)
@@ -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',
           ]