From: Andrew M. Kuchling Date: Mon, 3 Mar 2003 18:37:16 +0000 (+0000) Subject: [Bug #69389] List register command in __all__, so setup.py --help-commands will now... X-Git-Tag: v2.3c1~1603 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a2eaf31727034f8cff9835f4b2140007f450ccec;p=thirdparty%2FPython%2Fcpython.git [Bug #69389] List register command in __all__, so setup.py --help-commands will now list it --- diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py index fc6117166b8a..870005dca72b 100644 --- a/Lib/distutils/command/__init__.py +++ b/Lib/distutils/command/__init__.py @@ -19,6 +19,7 @@ __all__ = ['build', 'install_scripts', 'install_data', 'sdist', + 'register', 'bdist', 'bdist_dumb', 'bdist_rpm',