diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-01-13 08:58:33 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-01-13 08:58:33 (GMT) |
commit | 38dc250521d2c34f58537b25301a0ac9a4bb6c85 (patch) | |
tree | 22510baff7fcfa37789fd564bf859b9cec3129ef /Misc | |
parent | d9fe22ce9b7d351193bef274eaad0e7b43cbb903 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |