summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2017-06-09 23:14:35 (GMT)
committerGitHub <noreply@github.com>2017-06-09 23:14:35 (GMT)
commitfe9c7a0fd3412efb7598b395e70a5a85219e2e6b (patch)
tree6f2def8aa4923b648b4f317495b939a35c7f2e1a /Misc/NEWS
parent7a16a4535d691eff79fcc65ae57e69741e6c83df (diff)
downloadcpython-fe9c7a0fd3412efb7598b395e70a5a85219e2e6b.zip
cpython-fe9c7a0fd3412efb7598b395e70a5a85219e2e6b.tar.gz
cpython-fe9c7a0fd3412efb7598b395e70a5a85219e2e6b.tar.bz2
Break circular references when closing SSLTransport objects (#981) (#2049)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7bd46d5..213a6e9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -49,6 +49,9 @@ Core and Builtins
Library
-------
+- bpo-29870: Fix ssl sockets leaks when connection is aborted in asyncio/ssl
+ implementation. Patch by Michaël Sghaïer.
+
- bpo-29743: Closing transport during handshake process leaks open socket.
Patch by Nikolay Kim