diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py index 9a5aef20023..8659307cbfd 100644 --- a/Lib/distutils/command/__init__.py +++ b/Lib/distutils/command/__init__.py @@ -9,6 +9,7 @@ commands. Currently this means: install install_py install_ext + dist but this list will undoubtedly grow with time.""" @@ -20,4 +21,5 @@ __all__ = ['build', 'install', 'install_py', 'install_ext', + 'dist', ]