summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-08-06 20:56:40 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-08-06 20:56:40 (GMT)
commit853395b44819f04aff85e575e746da4eabaa8347 (patch)
tree46d418bfea15bc6807412a2f95d8087d587504bf /Misc
parent79ba3882ad189018ee21e2bd592a3ec6cd5d6094 (diff)
downloadcpython-853395b44819f04aff85e575e746da4eabaa8347.zip
cpython-853395b44819f04aff85e575e746da4eabaa8347.tar.gz
cpython-853395b44819f04aff85e575e746da4eabaa8347.tar.bz2
Issue #18621: Prevent the site module's patched builtins from keeping too many references alive for too long.
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 968065a..09b7e3a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,9 @@ Core and Builtins
Library
-------
+- Issue #18621: Prevent the site module's patched builtins from keeping
+ too many references alive for too long.
+
- Issue #4885: Add weakref support to mmap objects. Patch by Valerie Lambert.
- Issue #8860: Fixed rounding in timedelta constructor.