Merged revisions 67762 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r67762 | antoine.pitrou | 2008-12-14 18:40:51 +0100 (dim., 14 déc. 2008) | 3 lines
Backport r67759 (fix io.IncrementalNewlineDecoder for UTF-16 et al.).
........
diff --git a/Misc/NEWS b/Misc/NEWS
index 1963194..a3da314 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,10 @@
Library
-------
+- Issue #4574: fix a crash in io.IncrementalNewlineDecoder when a carriage
+ return encodes to more than one byte in the source encoding (e.g. UTF-16)
+ and gets split on a chunk boundary.
+
- Issue #4223: inspect.getsource() will now correctly display source code
for packages loaded via zipimport (or any other conformant PEP 302
loader). Original patch by Alexander Belopolsky.