summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-10-06 21:03:20 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-10-06 21:03:20 (GMT)
commit7d52079395263fa7a9e8b82da86d0c595ad71859 (patch)
tree0cf856947b09262d6f3591572343ec89649da3b9 /Misc
parente1b60d4849111f5e1bacb1cf511ec7e7e97c205b (diff)
downloadcpython-7d52079395263fa7a9e8b82da86d0c595ad71859.zip
cpython-7d52079395263fa7a9e8b82da86d0c595ad71859.tar.gz
cpython-7d52079395263fa7a9e8b82da86d0c595ad71859.tar.bz2
Merged revisions 75272-75273 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r75272 | amaury.forgeotdarc | 2009-10-06 21:56:32 +0200 (mar., 06 oct. 2009) | 5 lines #1571184: makeunicodedata.py now generates the functions _PyUnicode_ToNumeric, _PyUnicode_IsLinebreak and _PyUnicode_IsWhitespace. It now also parses the Unihan.txt for numeric values. ........ r75273 | amaury.forgeotdarc | 2009-10-06 22:02:09 +0200 (mar., 06 oct. 2009) | 2 lines Add Anders Chrigstrom to Misc/ACKS for his work on unicodedata. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS5
2 files changed, 6 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 3aefa6f..8ef4198 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -131,6 +131,7 @@ Michael Chermside
Albert Chin-A-Young
Adal Chiriliuc
Matt Chisholm
+Anders Chrigström
Tom Christiansen
Vadim Chugunov
David Cinege
diff --git a/Misc/NEWS b/Misc/NEWS
index e673d61..3937389 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,11 @@ What's New in Python 3.2 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 #7019: Raise ValueError when unmarshalling bad long data, instead
of producing internally inconsistent Python longs.