summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2015-10-19 18:49:30 (GMT)
committerGuido van Rossum <guido@python.org>2015-10-19 18:49:30 (GMT)
commitc44ecdf687897a20f11d0c5212b51e8d31f6100a (patch)
treecd908b285d3249995ae3f34a0ae49cb093203253 /Misc
parent2bf91bf46cf5bf9913a126092a8d08bcd7a6157c (diff)
downloadcpython-c44ecdf687897a20f11d0c5212b51e8d31f6100a.zip
cpython-c44ecdf687897a20f11d0c5212b51e8d31f6100a.tar.gz
cpython-c44ecdf687897a20f11d0c5212b51e8d31f6100a.tar.bz2
Issue #25441: asyncio: Raise error from drain() when socket is closed.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 260ee3f..01fbf17 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -96,6 +96,8 @@ Core and Builtins
Library
-------
+- Issue #25441: asyncio: Raise error from drain() when socket is closed.
+
- Issue #25411: Improved Unicode support in SMTPHandler through better use of
the email package. Thanks to user simon04 for the patch.