summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2009-04-25 14:03:16 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2009-04-25 14:03:16 (GMT)
commit5d98ec76bb548ef65b6943c6eefd48eaabdbed90 (patch)
tree297888aa774109cfd45e15d0d12110491ef657c2 /Misc/NEWS
parent140d9d673efdb33178fb4f93ece31bbc1d91ada0 (diff)
downloadcpython-5d98ec76bb548ef65b6943c6eefd48eaabdbed90.zip
cpython-5d98ec76bb548ef65b6943c6eefd48eaabdbed90.tar.gz
cpython-5d98ec76bb548ef65b6943c6eefd48eaabdbed90.tar.bz2
Issue #5828 (Invalid behavior of unicode.lower): Fixed bogus logic in
makeunicodedata.py and regenerated the Unicode database (This fixes u'\u1d79'.lower() == '\x00').
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6908109..7c36bda 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -773,6 +773,10 @@ Library
- Issue #2703: SimpleXMLRPCDispatcher.__init__: Provide default values for
new arguments introduced in 2.5.
+- Issue #5828 (Invalid behavior of unicode.lower): Fixed bogus logic in
+ makeunicodedata.py and regenerated the Unicode database (This fixes
+ u'\u1d79'.lower() == '\x00').
+
Tools/Demos
-----------