diff options
author | Greg Ward <gward@python.net> | 2000-03-02 01:57:12 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-03-02 01:57:12 (GMT) |
commit | 76ec0d6d76bf2416d92a51f0317cfe1094e9e5f6 (patch) | |
tree | 21d5c8311d7503aba59375b308ca5706c2cf6ebf /Lib/distutils/command/build_clib.py | |
parent | 3ce77fd05ed00168f618b63401d770ccc4f04b09 (diff) | |
download | cpython-76ec0d6d76bf2416d92a51f0317cfe1094e9e5f6.zip cpython-76ec0d6d76bf2416d92a51f0317cfe1094e9e5f6.tar.gz cpython-76ec0d6d76bf2416d92a51f0317cfe1094e9e5f6.tar.bz2 |
Renamed 'build_lib' command to 'build_clib':
* replaced build_lib.py with build_clib.py
* renamed the class in build_clib.py
* changed all references to 'build_lib' command in other command classes
Diffstat (limited to 'Lib/distutils/command/build_clib.py')
-rw-r--r-- | Lib/distutils/command/build_clib.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/command/build_clib.py b/Lib/distutils/command/build_clib.py index 955cf56..7a6ef7a 100644 --- a/Lib/distutils/command/build_clib.py +++ b/Lib/distutils/command/build_clib.py @@ -1,6 +1,6 @@ -"""distutils.command.build_lib +"""distutils.command.build_clib -Implements the Distutils 'build_lib' command, to build a C/C++ library +Implements the Distutils 'build_clib' command, to build a C/C++ library that is included in the module distribution and needed by an extension module.""" @@ -26,7 +26,7 @@ from distutils.errors import * from distutils.ccompiler import new_compiler -class build_lib (Command): +class build_clib (Command): description = "build C/C++ libraries used by Python extensions" |