diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-06-11 21:42:26 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-06-11 21:42:26 (GMT) |
commit | cca3a3f396a111c3b7bc766c601950acbf5d18fe (patch) | |
tree | 471f80dccb23939f042e14ad650ab77b13c405ca /Misc | |
parent | c6660cf4d68ec17fef0a49aca2cf441c124a88d4 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |