From: Serhiy Storchaka Date: Tue, 24 Mar 2015 21:23:28 +0000 (+0200) Subject: Issue #21802: The reader in BufferedRWPair now is closed even when closing X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8be6be427d7af54cd2dcc5f7c8f73ec2a1e2dfcc;p=python Issue #21802: The reader in BufferedRWPair now is closed even when closing writer failed in BufferedRWPair.close(). --- 8be6be427d7af54cd2dcc5f7c8f73ec2a1e2dfcc diff --cc Misc/NEWS index c1489983a3,fb400038cf..b85eeafe88 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -30,10 -18,9 +30,13 @@@ Core and Builtin Library ------- + - Issue #21802: The reader in BufferedRWPair now is closed even when closing + writer failed in BufferedRWPair.close(). + +- Issue #23622: Unknown escapes in regular expressions that consist of ``'\'`` + and ASCII letter now raise a deprecation warning and will be forbidden in + Python 3.6. + - Issue #23671: string.Template now allows to specify the "self" parameter as keyword argument. string.Formatter now allows to specify the "self" and the "format_string" parameters as keyword arguments.