mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
unicodedatabase.c is no longer needed thanks to Fredrik's patches.
This commit is contained in:
parent
3af7cc034c
commit
14970bea8f
1 changed files with 1 additions and 2 deletions
3
setup.py
3
setup.py
|
@ -141,8 +141,7 @@ class PyBuildExt(build_ext):
|
||||||
# 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']) )
|
||||||
# static Unicode character database
|
# static Unicode character database
|
||||||
exts.append( Extension('unicodedata',
|
exts.append( Extension('unicodedata', ['unicodedata.c']) )
|
||||||
['unicodedata.c', 'unicodedatabase.c']) )
|
|
||||||
# Unicode Character Name expansion hash table
|
# Unicode Character Name expansion hash table
|
||||||
exts.append( Extension('ucnhash', ['ucnhash.c']) )
|
exts.append( Extension('ucnhash', ['ucnhash.c']) )
|
||||||
# access to ISO C locale support
|
# access to ISO C locale support
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue