closes bpo-39926: Update Unicode to 13.0.0. (GH-18910)

This commit is contained in:
Benjamin Peterson 2020-03-10 20:41:34 -07:00 committed by GitHub
parent 76d5877b72
commit 051b9d08d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 30363 additions and 29328 deletions

View file

@ -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 = "12.1.0"
UNIDATA_VERSION = "13.0.0"
UNICODE_DATA = "UnicodeData%s.txt"
COMPOSITION_EXCLUSIONS = "CompositionExclusions%s.txt"
EASTASIAN_WIDTH = "EastAsianWidth%s.txt"
@ -100,13 +100,14 @@ EXTENDED_CASE_MASK = 0x4000
# these ranges need to match unicodedata.c:is_unified_ideograph
cjk_ranges = [
('3400', '4DB5'),
('4E00', '9FEF'),
('20000', '2A6D6'),
('3400', '4DBF'),
('4E00', '9FFC'),
('20000', '2A6DD'),
('2A700', '2B734'),
('2B740', '2B81D'),
('2B820', '2CEA1'),
('2CEB0', '2EBE0'),
('30000', '3134A'),
]