summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-06-11 21:42:26 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-06-11 21:42:26 (GMT)
commitcca3a3f396a111c3b7bc766c601950acbf5d18fe (patch)
tree471f80dccb23939f042e14ad650ab77b13c405ca /Misc
parentc6660cf4d68ec17fef0a49aca2cf441c124a88d4 (diff)
downloadcpython-cca3a3f396a111c3b7bc766c601950acbf5d18fe.zip
cpython-cca3a3f396a111c3b7bc766c601950acbf5d18fe.tar.gz
cpython-cca3a3f396a111c3b7bc766c601950acbf5d18fe.tar.bz2
Issue #8941: decoding big endian UTF-32 data in UCS-2 builds could crash
the interpreter with characters outside the Basic Multilingual Plane (higher than 0x10000).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9938cea..78d8cc7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 2.7 release candidate 2?
Core and Builtins
-----------------
+- Issue #8941: decoding big endian UTF-32 data in UCS-2 builds could crash
+ the interpreter with characters outside the Basic Multilingual Plane
+ (higher than 0x10000).
+
- In the unicode/str.format(), raise a ValueError when indexes to arguments are
too large.