summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNikolay Kim <fafhrd91@gmail.com>2017-06-10 04:04:39 (GMT)
committerYury Selivanov <yury@magic.io>2017-06-10 04:04:39 (GMT)
commita608d2d5a7f1aabe9bcbfc220135c5e126189390 (patch)
tree8e360568addd6c6338effe49f2c9dea4464f5993 /Misc/NEWS
parent34792d25ab7329241ea24595286d65d54c266274 (diff)
downloadcpython-a608d2d5a7f1aabe9bcbfc220135c5e126189390.zip
cpython-a608d2d5a7f1aabe9bcbfc220135c5e126189390.tar.gz
cpython-a608d2d5a7f1aabe9bcbfc220135c5e126189390.tar.bz2
bpo-29406: asyncio SSL contexts leak sockets after calling close with certain servers (#409)
* asyncio SSL contexts leak sockets after calling close with certain servers * cleanup _shutdown_timeout_handle on _fatal_error
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9db4e34..36ce9ce 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -356,6 +356,10 @@ Library
- bpo-29743: Closing transport during handshake process leaks open socket.
Patch by Nikolay Kim
+- bpo-29406: asyncio SSL contexts leak sockets after calling close with
+ certain servers.
+ Patch by Nikolay Kim
+
- bpo-27585: Fix waiter cancellation in asyncio.Lock.
Patch by Mathieu Sornay.