From: Greg Ward Date: Tue, 21 Sep 1999 18:33:09 +0000 (+0000) Subject: Added docstring, brought __all__ up-to-date. X-Git-Tag: v1.6a1~903 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d4b8429fc506267a4da3bcf135d8b7f8780379f3;p=thirdparty%2FPython%2Fcpython.git Added docstring, brought __all__ up-to-date. --- diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py index 9567fd13fbe5..9a5aef200235 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', ]