Commit 36297653 authored by Martin v. Löwis's avatar Martin v. Löwis

Issue #10459: Update CJK character names to Unicode 5.1.

parent 8564b862
......@@ -16,6 +16,8 @@ Core and Builtins
Library
-------
- Issue #10459: Update CJK character names to Unicode 5.1.
- Issue #4493: urllib.request adds '/' in front of path components which does not
start with '/. Common behavior exhibited by browsers and other clients.
......
......@@ -871,7 +871,7 @@ is_unified_ideograph(Py_UCS4 code)
{
return (
(0x3400 <= code && code <= 0x4DB5) || /* CJK Ideograph Extension A */
(0x4E00 <= code && code <= 0x9FBB) || /* CJK Ideograph */
(0x4E00 <= code && code <= 0x9FC3) || /* CJK Ideograph, Unicode 5.1 */
(0x20000 <= code && code <= 0x2A6D6));/* CJK Ideograph Extension B */
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment