mirror of https://github.com/python/cpython
Added docstring, brought __all__ up-to-date.
This commit is contained in:
parent
865de83668
commit
d4b8429fc5
|
@ -1,6 +1,23 @@
|
||||||
# this is solely for debugging convenience
|
"""distutils.command
|
||||||
|
|
||||||
|
Package containing implementation of all the standard Distutils
|
||||||
|
commands. Currently this means:
|
||||||
|
|
||||||
|
build
|
||||||
|
build_py
|
||||||
|
build_ext
|
||||||
|
install
|
||||||
|
install_py
|
||||||
|
install_ext
|
||||||
|
|
||||||
|
but this list will undoubtedly grow with time."""
|
||||||
|
|
||||||
|
__rcsid__ = "$Id$"
|
||||||
|
|
||||||
__all__ = ['build',
|
__all__ = ['build',
|
||||||
'build_py',
|
'build_py',
|
||||||
'make_blib',
|
'build_ext',
|
||||||
|
'install',
|
||||||
|
'install_py',
|
||||||
|
'install_ext',
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue