summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-08-22 11:08:38 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-08-22 11:08:38 (GMT)
commit93e7afc5d9b248e264da5dbe97659bf37cb8eb15 (patch)
tree3382fc6a75dd52900aa747c5308009903616850f /Misc
parent3d3bc8121915968ee8e445299800914b5a46da3a (diff)
downloadcpython-93e7afc5d9b248e264da5dbe97659bf37cb8eb15.zip
cpython-93e7afc5d9b248e264da5dbe97659bf37cb8eb15.tar.gz
cpython-93e7afc5d9b248e264da5dbe97659bf37cb8eb15.tar.bz2
#9200: The str.is* methods now work with strings that contain non-BMP characters even in narrow Unicode builds.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index da0e67f..6673d20 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.3?
Core and Builtins
-----------------
+- Issue #9200: The str.is* methods now work with strings that contain non-BMP
+ characters even in narrow Unicode builds.
+
- Issue #12791: Break reference cycles early when a generator exits with
an exception.