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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3d3daf0b7fc5a1064f3eead47e5f62cc317afd6c;p=thirdparty%2FPython%2Fcpython.git improve message (#16597) --- diff --git a/Misc/NEWS b/Misc/NEWS index 40e604a36349..7e041f37b3f9 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__.