From ab9d08ce654be8f555b2a8a08ae56c1e63ba2fec Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Wed, 29 Mar 2000 02:18:39 +0000 Subject: [PATCH] Added 'build_clib'; replaced 'install_py' and 'install_ext' with 'install_lib'. --- Lib/distutils/command/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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', ] -- 2.40.0