summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-01-13 08:58:33 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-01-13 08:58:33 (GMT)
commit38dc250521d2c34f58537b25301a0ac9a4bb6c85 (patch)
tree22510baff7fcfa37789fd564bf859b9cec3129ef /Misc
parentd9fe22ce9b7d351193bef274eaad0e7b43cbb903 (diff)
downloadcpython-38dc250521d2c34f58537b25301a0ac9a4bb6c85.zip
cpython-38dc250521d2c34f58537b25301a0ac9a4bb6c85.tar.gz
cpython-38dc250521d2c34f58537b25301a0ac9a4bb6c85.tar.bz2
Issue #23209, #23225: selectors.BaseSelector.close() now clears its internal
reference to the selector mapping to break a reference cycle. Initial patch written by Martin Richard.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 08a02f2..96e34e4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -44,6 +44,10 @@ Core and Builtins
Library
-------
+- Issue #23209, #23225: selectors.BaseSelector.close() now clears its internal
+ reference to the selector mapping to break a reference cycle. Initial patch
+ written by Martin Richard.
+
- Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. The
availability of the function is checked during the compilation. Patch written
by Bernard Spil.