[New-bugs-announce] [issue29212] Python 3.6 logging thread name regression with concurrent.future threads

desbma report at bugs.python.org
Mon Jan 9 00:16:03 EST 2017


New submission from desbma:

Logging statement using 'threadName' from concurrent.futures threads produce the wrong output with Python 3.6.

The attached program with Python 3.5.X outputs:
MainThread From main thread
Thread-1 From worker thread

But with 3.6, it outputs:
MainThread From main thread
<concurrent.futures.thread.ThreadPoolExecutor object at 0x7f96711ac278>_0 From worker thread

----------
files: test.py
messages: 285021
nosy: desbma
priority: normal
severity: normal
status: open
title: Python 3.6 logging thread name regression with concurrent.future threads
type: behavior
versions: Python 3.6
Added file: http://bugs.python.org/file46222/test.py

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue29212>
_______________________________________


More information about the New-bugs-announce mailing list