summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2019-05-07 20:53:19 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-05-07 20:53:19 (GMT)
commit1cc0ee7d9f6a2817918fafd24c18d8bb093a85d3 (patch)
tree03a2e1f32fb51d8fc1c8e8ce8ebd64f672de8709 /Misc
parente19a91e45fd54a56e39c2d12e6aaf4757030507f (diff)
downloadcpython-1cc0ee7d9f6a2817918fafd24c18d8bb093a85d3.zip
cpython-1cc0ee7d9f6a2817918fafd24c18d8bb093a85d3.tar.gz
cpython-1cc0ee7d9f6a2817918fafd24c18d8bb093a85d3.tar.bz2
bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transport (GH-13098)
https://bugs.python.org/issue36801
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-05-05-09-45-44.bpo-36801.XrlFFs.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-05-05-09-45-44.bpo-36801.XrlFFs.rst b/Misc/NEWS.d/next/Library/2019-05-05-09-45-44.bpo-36801.XrlFFs.rst
new file mode 100644
index 0000000..43e51fe
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-05-05-09-45-44.bpo-36801.XrlFFs.rst
@@ -0,0 +1 @@
+Properly handle SSL connection closing in asyncio StreamWriter.drain() call.