-
-
Notifications
You must be signed in to change notification settings - Fork 31.1k
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
update to Unicode 11.0.0 (bpo-33778) #7439
Conversation
2a16b33
to
ee429da
Compare
Also, standardize indentation of generated tables.
ee429da
to
49b05a8
Compare
@@ -921,7 +921,7 @@ is_unified_ideograph(Py_UCS4 code) | |||
{ | |||
return | |||
(0x3400 <= code && code <= 0x4DB5) || /* CJK Ideograph Extension A */ | |||
(0x4E00 <= code && code <= 0x9FEA) || /* CJK Ideograph */ | |||
(0x4E00 <= code && code <= 0x9FEF) || /* CJK Ideograph */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @benjaminp, why did you change the value? just for my own info, I am interested.
Thank you
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Current version: https://www.unicode.org/Public/UCD/latest/ucd/PropList.txt
Old version: https://www.unicode.org/Public/10.0.0/ucd/PropList.txt
ctrl+f for CJK
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for the info.
@@ -921,7 +921,7 @@ is_unified_ideograph(Py_UCS4 code) | |||
{ | |||
return | |||
(0x3400 <= code && code <= 0x4DB5) || /* CJK Ideograph Extension A */ | |||
(0x4E00 <= code && code <= 0x9FEA) || /* CJK Ideograph */ | |||
(0x4E00 <= code && code <= 0x9FEF) || /* CJK Ideograph */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for the info.
Thanks @benjaminp for the PR 🌮🎉.. I'm working now to backport this PR to: 3.7. |
GH-7470 is a backport of this pull request to the 3.7 branch. |
Also, standardize indentation of generated tables. (cherry picked from commit 7c69c1c) Co-authored-by: Benjamin Peterson <benjamin@python.org>
https://bugs.python.org/issue33778