From: Greg Ward Date: Wed, 29 Mar 2000 02:18:39 +0000 (+0000) Subject: Added 'build_clib'; replaced 'install_py' and 'install_ext' with 'install_lib'. X-Git-Tag: v1.6a1~107 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab9d08ce654be8f555b2a8a08ae56c1e63ba2fec;p=python Added 'build_clib'; replaced 'install_py' and 'install_ext' with 'install_lib'. --- diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py index d2b37a8ce1..b7973c6142 100644 --- a/Lib/distutils/command/__init__.py +++ b/Lib/distutils/command/__init__.py @@ -8,9 +8,9 @@ __revision__ = "$Id$" __all__ = ['build', 'build_py', 'build_ext', + 'build_clib', 'install', - 'install_py', - 'install_ext', + 'install_lib', 'clean', 'sdist', ]