mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Added new Python C API _test module to the build mechanism on Unix.
This commit is contained in:
parent
4d282decbe
commit
bc7cbcbc8f
2 changed files with 3 additions and 0 deletions
|
@ -149,6 +149,7 @@ GLHACK=-Dclear=__GLclear
|
||||||
#operator operator.c # operator.add() and similar goodies
|
#operator operator.c # operator.add() and similar goodies
|
||||||
#_weakref _weakref.c # basic weak reference support
|
#_weakref _weakref.c # basic weak reference support
|
||||||
#_codecs _codecsmodule.c # access to the builtin codecs and codec registry
|
#_codecs _codecsmodule.c # access to the builtin codecs and codec registry
|
||||||
|
#_test _testmodule.c # Python C API test module
|
||||||
|
|
||||||
#unicodedata unicodedata.c unicodedatabase.c
|
#unicodedata unicodedata.c unicodedatabase.c
|
||||||
# static Unicode character database
|
# static Unicode character database
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -174,6 +174,8 @@ class PyBuildExt(build_ext):
|
||||||
exts.append( Extension('operator', ['operator.c']) )
|
exts.append( Extension('operator', ['operator.c']) )
|
||||||
# access to the builtin codecs and codec registry
|
# access to the builtin codecs and codec registry
|
||||||
exts.append( Extension('_codecs', ['_codecsmodule.c']) )
|
exts.append( Extension('_codecs', ['_codecsmodule.c']) )
|
||||||
|
# Python C API test module
|
||||||
|
exts.append( Extension('_test', ['_testmodule.c']) )
|
||||||
# static Unicode character database
|
# static Unicode character database
|
||||||
exts.append( Extension('unicodedata', ['unicodedata.c']) )
|
exts.append( Extension('unicodedata', ['unicodedata.c']) )
|
||||||
# access to ISO C locale support
|
# access to ISO C locale support
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue