summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2014-09-02 17:39:18 (GMT)
committerGuido van Rossum <guido@python.org>2014-09-02 17:39:18 (GMT)
commitcfd4661e78bd2256caaf80cf29588e5119e787b0 (patch)
tree507008e6f9977acff6a347cc085119c6a7917164 /Misc
parent8257b6283e3ea41f5746835871dedcb00139bdfe (diff)
downloadcpython-cfd4661e78bd2256caaf80cf29588e5119e787b0.zip
cpython-cfd4661e78bd2256caaf80cf29588e5119e787b0.tar.gz
cpython-cfd4661e78bd2256caaf80cf29588e5119e787b0.tar.bz2
Closes #21527: Add default number of workers to ThreadPoolExecutor. (Claudiu Popa.)
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 71ab268..a02e8a6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -129,6 +129,9 @@ Core and Builtins
Library
-------
+- Issue #21527: Add a default number of workers to ThreadPoolExecutor equal
+ to 5 times the number of CPUs. Patch by Claudiu Popa.
+
- Issue #22216: smtplib now resets its state more completely after a quit. The
most obvious consequence of the previous behavior was a STARTTLS failure
during a connect/starttls/quit/connect/starttls sequence.