summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>1999-09-21 18:33:09 (GMT)
committerGreg Ward <gward@python.net>1999-09-21 18:33:09 (GMT)
commitd4b8429fc506267a4da3bcf135d8b7f8780379f3 (patch)
tree9b85c55cf17a49908c7cdd86ae9ae56db5b4d351
parent865de8366872bb5a83e01b96ce4dfdb2a9151d77 (diff)
downloadcpython-d4b8429fc506267a4da3bcf135d8b7f8780379f3.zip
cpython-d4b8429fc506267a4da3bcf135d8b7f8780379f3.tar.gz
cpython-d4b8429fc506267a4da3bcf135d8b7f8780379f3.tar.bz2
Added docstring, brought __all__ up-to-date.
-rw-r--r--Lib/distutils/command/__init__.py21
1 files changed, 19 insertions, 2 deletions
diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py
index 9567fd1..9a5aef2 100644
--- a/Lib/distutils/command/__init__.py
+++ b/Lib/distutils/command/__init__.py
@@ -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',
'build_py',
- 'make_blib',
+ 'build_ext',
+ 'install',
+ 'install_py',
+ 'install_ext',
]