summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2019-05-14 16:09:44 (GMT)
committerVictor Stinner <vstinner@redhat.com>2019-05-14 16:09:44 (GMT)
commitf12ba7cd0a7370631214ac0b337ab5455ce717b2 (patch)
tree26b7914a776c311c65cb94cd12ffe409eb4f20a8 /Misc
parentc96be811fa7da8ddcea18cc7abcae94e0f5ff966 (diff)
downloadcpython-f12ba7cd0a7370631214ac0b337ab5455ce717b2.zip
cpython-f12ba7cd0a7370631214ac0b337ab5455ce717b2.tar.gz
cpython-f12ba7cd0a7370631214ac0b337ab5455ce717b2.tar.bz2
bpo-36916: asyncio: Swallow unhandled write() exception (GH-13313)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-05-14-15-39-34.bpo-36916._GPsTt.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-05-14-15-39-34.bpo-36916._GPsTt.rst b/Misc/NEWS.d/next/Library/2019-05-14-15-39-34.bpo-36916._GPsTt.rst
new file mode 100644
index 0000000..8726bb2
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-05-14-15-39-34.bpo-36916._GPsTt.rst
@@ -0,0 +1,2 @@
+Remove a message about an unhandled exception in a task when writer.write()
+is used without await and writer.drain() fails with an exception.