diff options
author | Benjamin Peterson <benjamin@python.org> | 2022-09-13 22:45:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-13 22:45:12 (GMT) |
commit | fd1e477f5300172d9330e5777d37d70add473baf (patch) | |
tree | 71543cd2fcc3a4dc0ee65b0ff0118b5e4ec9e8b8 /Tools/unicode | |
parent | 69d9a080993902b289c1b2c089cc0882b908df4c (diff) | |
download | cpython-fd1e477f5300172d9330e5777d37d70add473baf.zip cpython-fd1e477f5300172d9330e5777d37d70add473baf.tar.gz cpython-fd1e477f5300172d9330e5777d37d70add473baf.tar.bz2 |
closes gh-96734: Update to Unicode 15.0.0. (GH-96809)
Diffstat (limited to 'Tools/unicode')
-rw-r--r-- | Tools/unicode/makeunicodedata.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Tools/unicode/makeunicodedata.py b/Tools/unicode/makeunicodedata.py index c301759..554392c 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 = "14.0.0" +UNIDATA_VERSION = "15.0.0" UNICODE_DATA = "UnicodeData%s.txt" COMPOSITION_EXCLUSIONS = "CompositionExclusions%s.txt" EASTASIAN_WIDTH = "EastAsianWidth%s.txt" @@ -104,11 +104,12 @@ cjk_ranges = [ ('3400', '4DBF'), ('4E00', '9FFF'), ('20000', '2A6DF'), - ('2A700', '2B738'), + ('2A700', '2B739'), ('2B740', '2B81D'), ('2B820', '2CEA1'), ('2CEB0', '2EBE0'), ('30000', '3134A'), + ('31350', '323AF'), ] |