mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Unicode 9.0.0
Not completely mechanical since support for East Asian Width changes—emoji codepoints became Wide—had to be added to unicodedata.
This commit is contained in:
parent
7ec64562b2
commit
6775231597
10 changed files with 26910 additions and 25252 deletions
3
setup.py
3
setup.py
|
@ -652,7 +652,8 @@ class PyBuildExt(build_ext):
|
|||
# profiler (_lsprof is for cProfile.py)
|
||||
exts.append( Extension('_lsprof', ['_lsprof.c', 'rotatingtree.c']) )
|
||||
# static Unicode character database
|
||||
exts.append( Extension('unicodedata', ['unicodedata.c']) )
|
||||
exts.append( Extension('unicodedata', ['unicodedata.c'],
|
||||
depends=['unicodedata_db.h', 'unicodename_db.h']) )
|
||||
# _opcode module
|
||||
exts.append( Extension('_opcode', ['_opcode.c']) )
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue