summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRichard Oudkerk <shibturn@gmail.com>2013-04-17 19:58:00 (GMT)
committerRichard Oudkerk <shibturn@gmail.com>2013-04-17 19:58:00 (GMT)
commit409c31390f839debb2f05cef691e8b59e52bd524 (patch)
tree49a505458425a31be4c08e22c38c8c56c17d8992 /Misc/NEWS
parentb38897fc91c7f4b80bc2025ade219674d7b78bf3 (diff)
downloadcpython-409c31390f839debb2f05cef691e8b59e52bd524.zip
cpython-409c31390f839debb2f05cef691e8b59e52bd524.tar.gz
cpython-409c31390f839debb2f05cef691e8b59e52bd524.tar.bz2
Issue #17555: Fix ForkAwareThreadLock so that size of after fork
registry does not grow exponentially with generation of process.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index be59be0..5a8c0b9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,9 @@ Core and Builtins
Library
-------
+- Issue #17555: Fix ForkAwareThreadLock so that size of after fork
+ registry does not grow exponentially with generation of process.
+
- Issue #17707: multiprocessing.Queue's get() method does not block for short
timeouts.