summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-04-23 23:25:45 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-04-23 23:25:45 (GMT)
commitb558f17b188fecc67ac1cd1d2fe8e8247afe38bf (patch)
tree50108a5e26ee77b1e31fc472bfc5c7f77faa56e0 /Misc
parentdfb299bb95040d5e96690afd93f7212e81b70722 (diff)
downloadcpython-b558f17b188fecc67ac1cd1d2fe8e8247afe38bf.zip
cpython-b558f17b188fecc67ac1cd1d2fe8e8247afe38bf.tar.gz
cpython-b558f17b188fecc67ac1cd1d2fe8e8247afe38bf.tar.bz2
Issue #5238: Calling makefile() on an SSL object would prevent the
underlying socket from being closed until all objects get truely destroyed.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 26ce4e0..580f9bf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,9 @@ Core and Builtins
Library
-------
+- Issue #5238: Calling makefile() on an SSL object would prevent the
+ underlying socket from being closed until all objects get truely destroyed.
+
- Issue #7943: Fix circular reference created when instantiating an SSL
socket. Initial patch by Péter Szabó.