From 6148c2cfa67078c1d77ba46a8d145cc29d0fed5d Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Fri, 31 Mar 2000 03:14:51 +0000 Subject: [PATCH] Added 'bdist' and 'bdist_dumb'. --- Lib/distutils/command/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py index b7973c6142d..385330b5e0f 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', ]