summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2008-12-14 17:40:51 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2008-12-14 17:40:51 (GMT)
commit655fbf18068626c86f487ce94771fdd22b784ae8 (patch)
treec7777112566161057a8b3380ddb0ece67ac87410 /Misc/NEWS
parent3e1c67e86660c17a9860470947bf460f298e5b5e (diff)
downloadcpython-655fbf18068626c86f487ce94771fdd22b784ae8.zip
cpython-655fbf18068626c86f487ce94771fdd22b784ae8.tar.gz
cpython-655fbf18068626c86f487ce94771fdd22b784ae8.tar.bz2
Backport r67759 (fix io.IncrementalNewlineDecoder for UTF-16 et al.).
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ea5ee13..79d4493 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -74,6 +74,10 @@ Core and Builtins
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.