summaryrefslogtreecommitdiff
path: root/Tools/unicode
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-06-27 15:45:56 -0500
committerBenjamin Peterson <benjamin@python.org>2015-06-27 15:45:56 -0500
commitfbff4549e00af01c17c03daa566002e560113fce (patch)
treea87c6bbf72470acf9efe9899475043b376609cf7 /Tools/unicode
parent8c761b8e8448cf386f9976083013a83678da775a (diff)
downloadcpython-fbff4549e00af01c17c03daa566002e560113fce.tar.gz
upgrade to Unicode 8.0.0
Diffstat (limited to 'Tools/unicode')
-rw-r--r--Tools/unicode/makeunicodedata.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/Tools/unicode/makeunicodedata.py b/Tools/unicode/makeunicodedata.py
index b7d31e8806..713e175c50 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 = "7.0.0"
+UNIDATA_VERSION = "8.0.0"
UNICODE_DATA = "UnicodeData%s.txt"
COMPOSITION_EXCLUSIONS = "CompositionExclusions%s.txt"
EASTASIAN_WIDTH = "EastAsianWidth%s.txt"
@@ -99,10 +99,11 @@ EXTENDED_CASE_MASK = 0x4000
# these ranges need to match unicodedata.c:is_unified_ideograph
cjk_ranges = [
('3400', '4DB5'),
- ('4E00', '9FCC'),
+ ('4E00', '9FD5'),
('20000', '2A6D6'),
('2A700', '2B734'),
- ('2B740', '2B81D')
+ ('2B740', '2B81D'),
+ ('2B820', '2CEA1'),
]
def maketables(trace=0):