diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-06-11 21:48:34 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-06-11 21:48:34 (GMT) |
commit | 6107a688eed14f6c886679ed723448cc531194c2 (patch) | |
tree | f1e0ee676386a3490d1bb464c4b7ba5106515813 /Misc/NEWS | |
parent | 4a3acca7c1f85946ac7526e303956dc03acd91fe (diff) | |
download | cpython-6107a688eed14f6c886679ed723448cc531194c2.zip cpython-6107a688eed14f6c886679ed723448cc531194c2.tar.gz cpython-6107a688eed14f6c886679ed723448cc531194c2.tar.bz2 |
Merged revisions 81908 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r81908 | antoine.pitrou | 2010-06-11 23:46:32 +0200 (ven., 11 juin 2010) | 11 lines
Merged revisions 81907 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r81907 | antoine.pitrou | 2010-06-11 23:42:26 +0200 (ven., 11 juin 2010) | 5 lines
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/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's New in Python 3.1.3? 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 str.format(), raise a ValueError when indexes to arguments are too large. |