diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2003-03-03 18:37:16 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2003-03-03 18:37:16 (GMT) |
commit | a2eaf31727034f8cff9835f4b2140007f450ccec (patch) | |
tree | 05dfeb1d41fa805884df6094e0900591bdc63642 /Lib/distutils/command | |
parent | a9ccce3fee1fb35587ed787883ef7b4b3e66ce30 (diff) | |
download | cpython-a2eaf31727034f8cff9835f4b2140007f450ccec.zip cpython-a2eaf31727034f8cff9835f4b2140007f450ccec.tar.gz cpython-a2eaf31727034f8cff9835f4b2140007f450ccec.tar.bz2 |
[Bug #69389] List register command in __all__, so setup.py --help-commands will now list it
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py index fc61171..870005d 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', |