diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-15 06:53:47 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-15 06:53:47 (GMT) |
commit | 67752315979e1501b7088273b5a1aecc90b6fe67 (patch) | |
tree | d58ae750065bdff2b4f14e4fe8e627517d1622bc /Tools/unicode | |
parent | 7ec64562b243f3b44a876a346f658a1d4a66a95a (diff) | |
download | cpython-67752315979e1501b7088273b5a1aecc90b6fe67.zip cpython-67752315979e1501b7088273b5a1aecc90b6fe67.tar.gz cpython-67752315979e1501b7088273b5a1aecc90b6fe67.tar.bz2 |
Unicode 9.0.0
Not completely mechanical since support for East Asian Width changes—emoji
codepoints became Wide—had to be added to unicodedata.
Diffstat (limited to 'Tools/unicode')
-rw-r--r-- | Tools/unicode/makeunicodedata.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Tools/unicode/makeunicodedata.py b/Tools/unicode/makeunicodedata.py index 713e175..5d8014a 100644 --- a/Tools/unicode/makeunicodedata.py +++ b/Tools/unicode/makeunicodedata.py @@ -42,7 +42,7 @@ VERSION = "3.2" # * Doc/library/stdtypes.rst, and # * Doc/library/unicodedata.rst # * Doc/reference/lexical_analysis.rst (two occurrences) -UNIDATA_VERSION = "8.0.0" +UNIDATA_VERSION = "9.0.0" UNICODE_DATA = "UnicodeData%s.txt" COMPOSITION_EXCLUSIONS = "CompositionExclusions%s.txt" EASTASIAN_WIDTH = "EastAsianWidth%s.txt" @@ -796,6 +796,7 @@ def merge_old_version(version, new, old): category_changes = [0xFF]*0x110000 decimal_changes = [0xFF]*0x110000 mirrored_changes = [0xFF]*0x110000 + east_asian_width_changes = [0xFF]*0x110000 # In numeric data, 0 means "no change", # -1 means "did not have a numeric value numeric_changes = [0] * 0x110000 @@ -862,6 +863,9 @@ def merge_old_version(version, new, old): elif k == 14: # change to simple titlecase mapping; ignore pass + elif k == 15: + # change to east asian width + east_asian_width_changes[i] = EASTASIANWIDTH_NAMES.index(value) elif k == 16: # derived property changes; not yet pass @@ -873,8 +877,9 @@ def merge_old_version(version, new, old): class Difference(Exception):pass raise Difference(hex(i), k, old.table[i], new.table[i]) new.changed.append((version, list(zip(bidir_changes, category_changes, - decimal_changes, mirrored_changes, - numeric_changes)), + decimal_changes, mirrored_changes, + east_asian_width_changes, + numeric_changes)), normalization_changes)) def open_data(template, version): |