diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-10-06 19:56:32 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-10-06 19:56:32 (GMT) |
commit | d0052d17b1a067e4aa8a69f5564a4b94e0c00502 (patch) | |
tree | c80b69d55175b2f9d9090262963fc1989358b963 /Misc/NEWS | |
parent | 85ea4bf781203d8b4fd2873791d0a7a26e103652 (diff) | |
download | cpython-d0052d17b1a067e4aa8a69f5564a4b94e0c00502.zip cpython-d0052d17b1a067e4aa8a69f5564a4b94e0c00502.tar.gz cpython-d0052d17b1a067e4aa8a69f5564a4b94e0c00502.tar.bz2 |
#1571184: makeunicodedata.py now generates the functions _PyUnicode_ToNumeric,
_PyUnicode_IsLinebreak and _PyUnicode_IsWhitespace.
It now also parses the Unihan.txt for numeric values.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -12,6 +12,11 @@ What's New in Python 2.7 alpha 1 Core and Builtins ----------------- +- Issue #1571184: The Unicode database contains properties for more characters. + The tables for code points representing numeric values, white spaces or line + breaks are now generated from the official Unicode Character Database files, + and include information from the Unihan.txt file. + - Issue #7050: Fix a SystemError when trying to use unpacking and augmented assignment. |