diff options
author | Gregory P. Smith <greg@krypto.org> | 2017-06-22 06:41:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-22 06:41:13 (GMT) |
commit | a3d91b43c2851312fb942f31afa12f5961706db6 (patch) | |
tree | 6988e0a35b1ee081c33a7ad5324521c4dc892425 /Misc/NEWS | |
parent | a0e911b190a229693a1b9948caf768de0069046b (diff) | |
download | cpython-a3d91b43c2851312fb942f31afa12f5961706db6.zip cpython-a3d91b43c2851312fb942f31afa12f5961706db6.tar.gz cpython-a3d91b43c2851312fb942f31afa12f5961706db6.tar.bz2 |
bpo-29212: Fix the ugly repr() ThreadPoolExecutor thread name. (#2315)
bpo-29212: Fix the ugly ThreadPoolExecutor thread name.
Fixes the newly introduced ugly default thread name for concurrent.futures
thread.ThreadPoolExecutor threads. They'll now resemble the old <=3.5
threading default Thread-x names by being named ThreadPoolExecutor-y_n.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -371,6 +371,10 @@ Extension Modules Library ------- +- bpo-29212: Fix concurrent.futures.thread.ThreadPoolExecutor threads to have + a non repr() based thread name by default when no thread_name_prefix is + supplied. They will now identify themselves as "ThreadPoolExecutor-y_n". + - [Security] bpo-30694: Upgrade expat copy from 2.2.0 to 2.2.1 to get fixes of multiple security vulnerabilities including: CVE-2017-9233 (External entity infinite loop DoS), CVE-2016-9063 (Integer overflow, re-fix), |