summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <pitrou@free.fr>2017-03-24 12:52:11 (GMT)
committerGitHub <noreply@github.com>2017-03-24 12:52:11 (GMT)
commit8988945cdc27ffa86ba8c624e095b51c459f5154 (patch)
tree3dd4f0619935cca2a0556f0a9cac10ff0aa6b678 /Misc
parente304e33c16e060932d1e2cc8a030d42b02b429b5 (diff)
downloadcpython-8988945cdc27ffa86ba8c624e095b51c459f5154.zip
cpython-8988945cdc27ffa86ba8c624e095b51c459f5154.tar.gz
cpython-8988945cdc27ffa86ba8c624e095b51c459f5154.tar.bz2
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
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 8003fac..bd43227 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -287,6 +287,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-19930: The mode argument of os.makedirs() no longer affects the file
permission bits of newly-created intermediate-level directories.