diff options
author | Yury Selivanov <yury@magic.io> | 2017-06-10 14:01:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-10 14:01:17 (GMT) |
commit | 1395c58ef7b98f087d1d5d50962fe7a8c032f34d (patch) | |
tree | 9d746f53f9bf7b7046dca3048a14d6c3aec5dba4 /Misc/NEWS | |
parent | 1f73023b908b1d13ca31d162ba613e0186218be5 (diff) | |
download | cpython-1395c58ef7b98f087d1d5d50962fe7a8c032f34d.zip cpython-1395c58ef7b98f087d1d5d50962fe7a8c032f34d.tar.gz cpython-1395c58ef7b98f087d1d5d50962fe7a8c032f34d.tar.bz2 |
[3.5] bpo-29406: asyncio SSL contexts leak sockets after calling close with certain servers (GH-409) (#2063)
* bpo-29406: asyncio SSL contexts leak sockets after calling close with certain servers (#409)
(cherry picked from commit a608d2d5a7f1aabe9bcbfc220135c5e126189390)
* [3.5] bpo-29406: asyncio SSL contexts leak sockets after calling close with certain servers (GH-409)
* asyncio SSL contexts leak sockets after calling close with certain servers
* cleanup _shutdown_timeout_handle on _fatal_error.
(cherry picked from commit a608d2d5a7f1aabe9bcbfc220135c5e126189390)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -62,6 +62,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. |