summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-24 21:21:57 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-24 21:21:57 (GMT)
commit7665be6087d879a96c4238684b2dfc642c67e60c (patch)
treee0b51ca3e484cd4717ed04857935a018234a3d9b /Misc
parent8ffe917cee26b83fed4f227c4ed16d4eec15dcf9 (diff)
downloadcpython-7665be6087d879a96c4238684b2dfc642c67e60c.zip
cpython-7665be6087d879a96c4238684b2dfc642c67e60c.tar.gz
cpython-7665be6087d879a96c4238684b2dfc642c67e60c.tar.bz2
Issue #21802: The reader in BufferedRWPair now is closed even when closing
writer failed in BufferedRWPair.close().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 58b74be..fb40003 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Core and Builtins
Library
-------
+- Issue #21802: The reader in BufferedRWPair now is closed even when closing
+ writer failed in BufferedRWPair.close().
+
- 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.