mirror of
https://github.com/python/cpython.git
synced 2025-07-19 01:05:26 +00:00
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
This commit is contained in:
parent
3ce77fd05e
commit
76ec0d6d76
4 changed files with 7 additions and 209 deletions
|
@ -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"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue