summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-09-30 02:46:57 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-09-30 02:46:57 (GMT)
commitbbd0a323aeb1222d216fa10a9e1d9c91945ad1e6 (patch)
treec2acd0daf41ca6a3c27eae19a6a50515d2d1a37c /Misc
parentd48bc9468f75e57249da5e3518c42d4c8b83ba29 (diff)
downloadcpython-bbd0a323aeb1222d216fa10a9e1d9c91945ad1e6.zip
cpython-bbd0a323aeb1222d216fa10a9e1d9c91945ad1e6.tar.gz
cpython-bbd0a323aeb1222d216fa10a9e1d9c91945ad1e6.tar.bz2
clear BufferedRWPair weakrefs on deallocation (closes #22517)
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 0df6679..890c251 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -17,6 +17,9 @@ Core and Builtins
Library
-------
+- Issue #22517: When a io.BufferedRWPair object is deallocated, clear its
+ weakrefs.
+
- Issue #22419: Limit the length of incoming HTTP request in wsgiref server to
65536 bytes and send a 414 error code for higher lengths. Patch contributed
by Devin Cook.