diff options
author | Greg Ward <gward@python.net> | 2000-03-31 03:14:51 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-03-31 03:14:51 (GMT) |
commit | 6148c2cfa67078c1d77ba46a8d145cc29d0fed5d (patch) | |
tree | 73b7a006e76f5e1711a70c44c4894a1561a86945 /Lib | |
parent | 42405a5d7d4dd6061c85ca11ca7474fb16e92190 (diff) | |
download | cpython-6148c2cfa67078c1d77ba46a8d145cc29d0fed5d.zip cpython-6148c2cfa67078c1d77ba46a8d145cc29d0fed5d.tar.gz cpython-6148c2cfa67078c1d77ba46a8d145cc29d0fed5d.tar.bz2 |
Added 'bdist' and 'bdist_dumb'.
Diffstat (limited to 'Lib')
-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 b7973c6..385330b 100644 --- a/Lib/distutils/command/__init__.py +++ b/Lib/distutils/command/__init__.py @@ -13,4 +13,6 @@ __all__ = ['build', 'install_lib', 'clean', 'sdist', + 'bdist', + 'bdist_dumb', ] |