diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2008-12-14 17:40:51 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2008-12-14 17:40:51 (GMT) |
commit | 655fbf18068626c86f487ce94771fdd22b784ae8 (patch) | |
tree | c7777112566161057a8b3380ddb0ece67ac87410 /Misc/NEWS | |
parent | 3e1c67e86660c17a9860470947bf460f298e5b5e (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |