mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Add CJK codecs support as discussed on python-dev. (SF #873597)
Several style fixes are suggested by Martin v. Loewis and Marc-Andre Lemburg. Thanks!
This commit is contained in:
parent
cd1f7430cb
commit
3e2a306920
88 changed files with 43278 additions and 34 deletions
13
setup.py
13
setup.py
|
@ -756,6 +756,19 @@ class PyBuildExt(build_ext):
|
|||
],
|
||||
))
|
||||
|
||||
# Hye-Shik Chang's CJKCodecs modules.
|
||||
exts.append(Extension('_multibytecodec',
|
||||
['cjkcodecs/multibytecodec.c']))
|
||||
for loc in ('ja_JP', 'ko_KR', 'zh_CN', 'zh_TW'):
|
||||
exts.append(Extension('_codecs_mapdata_' + loc,
|
||||
['cjkcodecs/mapdata_%s.c' % loc]))
|
||||
for enc in ('shift_jis', 'cp932', 'euc_jp', 'iso2022_jp',
|
||||
'iso2022_jp_1', 'iso2022_jp_2', 'iso2022_jp_3',
|
||||
'iso2022_jp_ext', 'shift_jisx0213', 'euc_jisx0213',
|
||||
'euc_kr', 'cp949', 'johab', 'iso2022_kr', 'gb2312',
|
||||
'gbk', 'gb18030', 'hz', 'big5', 'cp950'):
|
||||
exts.append(Extension('_codecs_' + enc, ['cjkcodecs/_%s.c' % enc]))
|
||||
|
||||
# Dynamic loading module
|
||||
if sys.maxint == 0x7fffffff:
|
||||
# This requires sizeof(int) == sizeof(long) == sizeof(char*)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue