From: Benjamin Peterson Date: Thu, 20 Dec 2012 18:54:59 +0000 (-0600) Subject: improve message (#16597) X-Git-Tag: v3.3.1rc1~504 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d3daf0b7fc5a1064f3eead47e5f62cc317afd6c;p=python improve message (#16597) --- diff --git a/Misc/NEWS b/Misc/NEWS index 40e604a363..7e041f37b3 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,8 +12,8 @@ What's New in Python 3.3.1? Core and Builtins ----------------- -- Issue #16597: Make BufferedIO.close call close() on the underlying stream if - invoking flush() fails. +- Issue #16597: In buffered and text IO, call close() on the underlying stream + if invoking flush() fails. - Issue #16722: In the bytes() constructor, try to call __bytes__ on the argument before __index__.