summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <pitrou@free.fr>2017-03-24 14:19:18 (GMT)
committerGitHub <noreply@github.com>2017-03-24 14:19:18 (GMT)
commit80cb6ed4db9bae09de1e9ad6001d11cb45a4c1cc (patch)
tree2d829301a643bae1ad5f9476ff32856487895900 /Misc/NEWS
parent6a45811d06e25447c83f78d67fd78298f83868ee (diff)
downloadcpython-80cb6ed4db9bae09de1e9ad6001d11cb45a4c1cc.zip
cpython-80cb6ed4db9bae09de1e9ad6001d11cb45a4c1cc.tar.gz
cpython-80cb6ed4db9bae09de1e9ad6001d11cb45a4c1cc.tar.bz2
bpo-29861: release references to multiprocessing Pool tasks (#743) (#801)
* bpo-29861: release references to multiprocessing Pool tasks (#743) * bpo-29861: release references to multiprocessing Pool tasks Release references to tasks, their arguments and their results as soon as they are finished, instead of keeping them alive until another task arrives. * Comments in test (cherry picked from commit 8988945cdc27ffa86ba8c624e095b51c459f5154) * Fix Misc/NEWS??
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 e063455..cc219d4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,6 +46,9 @@ Extension Modules
Library
-------
+- bpo-29861: Release references to tasks, their arguments and their results
+ as soon as they are finished in multiprocessing.Pool.
+
- bpo-29884: faulthandler: Restore the old sigaltstack during teardown.
Patch by Christophe Zeitouny.