diff options
author | Guido van Rossum <guido@python.org> | 2014-09-02 17:39:18 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2014-09-02 17:39:18 (GMT) |
commit | cfd4661e78bd2256caaf80cf29588e5119e787b0 (patch) | |
tree | 507008e6f9977acff6a347cc085119c6a7917164 /Misc | |
parent | 8257b6283e3ea41f5746835871dedcb00139bdfe (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |