diff options
author | Greg Ward <gward@python.net> | 2000-01-30 18:31:34 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-01-30 18:31:34 (GMT) |
commit | 4c67936e4eab6db332c32b51f45c91870fb58d90 (patch) | |
tree | 2daf68290f17607a067a9c55b50087838a213cf9 /Lib/distutils | |
parent | f0fd6175b3a1473bd2c51301a57a6d083551989f (diff) | |
download | cpython-4c67936e4eab6db332c32b51f45c91870fb58d90.zip cpython-4c67936e4eab6db332c32b51f45c91870fb58d90.tar.gz cpython-4c67936e4eab6db332c32b51f45c91870fb58d90.tar.bz2 |
Added 'dist' command.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/command/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py index 9a5aef2..8659307 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', ] |