diff options
author | Benjamin Peterson <benjamin@python.org> | 2021-09-14 18:00:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-14 18:00:38 (GMT) |
commit | 024fda47d40b8cee77ac1cd3d31ee549edc11986 (patch) | |
tree | f61f8b2e01e786703a976b73d651d87237856271 /Tools | |
parent | 797c8eb9ef511f0c25f10a453b35c4d2fe383c30 (diff) | |
download | cpython-024fda47d40b8cee77ac1cd3d31ee549edc11986.zip cpython-024fda47d40b8cee77ac1cd3d31ee549edc11986.tar.gz cpython-024fda47d40b8cee77ac1cd3d31ee549edc11986.tar.bz2 |
closes bpo-45190: Update Unicode data to version 14.0.0. (GH-28336)
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/unicode/makeunicodedata.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Tools/unicode/makeunicodedata.py b/Tools/unicode/makeunicodedata.py index 810b285..4894844 100644 --- a/Tools/unicode/makeunicodedata.py +++ b/Tools/unicode/makeunicodedata.py @@ -44,7 +44,7 @@ VERSION = "3.3" # * Doc/library/stdtypes.rst, and # * Doc/library/unicodedata.rst # * Doc/reference/lexical_analysis.rst (two occurrences) -UNIDATA_VERSION = "13.0.0" +UNIDATA_VERSION = "14.0.0" UNICODE_DATA = "UnicodeData%s.txt" COMPOSITION_EXCLUSIONS = "CompositionExclusions%s.txt" EASTASIAN_WIDTH = "EastAsianWidth%s.txt" @@ -101,9 +101,9 @@ EXTENDED_CASE_MASK = 0x4000 # these ranges need to match unicodedata.c:is_unified_ideograph cjk_ranges = [ ('3400', '4DBF'), - ('4E00', '9FFC'), - ('20000', '2A6DD'), - ('2A700', '2B734'), + ('4E00', '9FFF'), + ('20000', '2A6DF'), + ('2A700', '2B738'), ('2B740', '2B81D'), ('2B820', '2CEA1'), ('2CEB0', '2EBE0'), |