summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Library/2019-05-28-19-14-29.bpo-35279.PX7yl9.rst
blob: 41ee5c2fe8bf38054bac32a2635b76db60186f79 (plain)
1
2
3
Change default *max_workers* of ``ThreadPoolExecutor`` from ``cpu_count() *
5`` to ``min(32, cpu_count() + 4))``.  Previous value was unreasonably
large on many cores machines.