summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2017-06-09 23:14:24 (GMT)
committerGitHub <noreply@github.com>2017-06-09 23:14:24 (GMT)
commit7f1cd726c6e2d20368fe4d6a9762556c6d3604c2 (patch)
tree5b08ec1520878d2c155b6f4631225a3c334fc93b /Misc/NEWS
parentff9511bbadba27457cd0eb084e9b4305ab9dfcf5 (diff)
downloadcpython-7f1cd726c6e2d20368fe4d6a9762556c6d3604c2.zip
cpython-7f1cd726c6e2d20368fe4d6a9762556c6d3604c2.tar.gz
cpython-7f1cd726c6e2d20368fe4d6a9762556c6d3604c2.tar.bz2
Break circular references when closing SSLTransport objects (#981) (#2048)
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 0533193..5edf13b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -56,6 +56,9 @@ Extension Modules
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