]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added docstring, brought __all__ up-to-date.
authorGreg Ward <gward@python.net>
Tue, 21 Sep 1999 18:33:09 +0000 (18:33 +0000)
committerGreg Ward <gward@python.net>
Tue, 21 Sep 1999 18:33:09 +0000 (18:33 +0000)
Lib/distutils/command/__init__.py

index 9567fd13fbe560e96bb97cc62a9c7639b0005844..9a5aef20023586db53244a472cb2da6d6071ee1a 100644 (file)
@@ -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',
           ]