Skip to content

gh-109559: Update unicodedata for Unicode 15.1 #109560

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Sep 20, 2023
Merged
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update ``unicodedata`` for Unicode 15.1
3 changes: 2 additions & 1 deletion Modules/unicodedata.c
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,8 @@ is_unified_ideograph(Py_UCS4 code)
(0x2B820 <= code && code <= 0x2CEA1) || /* CJK Ideograph Extension E */
(0x2CEB0 <= code && code <= 0x2EBE0) || /* CJK Ideograph Extension F */
(0x30000 <= code && code <= 0x3134A) || /* CJK Ideograph Extension G */
(0x31350 <= code && code <= 0x323AF); /* CJK Ideograph Extension H */
(0x31350 <= code && code <= 0x323AF) || /* CJK Ideograph Extension H */
(0x2EBF0 <= code && code <= 0x2EE5D); /* CJK Ideograph Extension I */
}

/* macros used to determine if the given code point is in the PUA range that
Expand Down
Loading