summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-04-12 15:58:11 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-04-12 15:58:11 (GMT)
commitb7877f203d66ed693f7dca327963a8ce65c75e03 (patch)
treea8c37ae91d5a43853e6b169380e983f5896da82b /Misc
parent3fdd9b681de6bee616deb98b538370720a39c284 (diff)
downloadcpython-b7877f203d66ed693f7dca327963a8ce65c75e03.zip
cpython-b7877f203d66ed693f7dca327963a8ce65c75e03.tar.gz
cpython-b7877f203d66ed693f7dca327963a8ce65c75e03.tar.bz2
Issue #11815: Use a light-weight SimpleQueue for the result queue in concurrent.futures.ProcessPoolExecutor.
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 cbbde80..25dfd91 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -103,6 +103,9 @@ Core and Builtins
Library
-------
+- Issue #11815: Use a light-weight SimpleQueue for the result queue in
+ concurrent.futures.ProcessPoolExecutor.
+
- Issue #5162: Treat services like frozen executables to allow child spawning
from multiprocessing.forking on Windows.