mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Simplified doc string.
Added 'clean' to list of commands.
This commit is contained in:
parent
89ccb984f0
commit
fb4ece7fea
1 changed files with 2 additions and 11 deletions
|
@ -1,17 +1,7 @@
|
||||||
"""distutils.command
|
"""distutils.command
|
||||||
|
|
||||||
Package containing implementation of all the standard Distutils
|
Package containing implementation of all the standard Distutils
|
||||||
commands. Currently this means:
|
commands."""
|
||||||
|
|
||||||
build
|
|
||||||
build_py
|
|
||||||
build_ext
|
|
||||||
install
|
|
||||||
install_py
|
|
||||||
install_ext
|
|
||||||
dist
|
|
||||||
|
|
||||||
but this list will undoubtedly grow with time."""
|
|
||||||
|
|
||||||
__revision__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
|
@ -21,5 +11,6 @@ __all__ = ['build',
|
||||||
'install',
|
'install',
|
||||||
'install_py',
|
'install_py',
|
||||||
'install_ext',
|
'install_ext',
|
||||||
|
'clean',
|
||||||
'sdist',
|
'sdist',
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue