This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author desbma
Recipients desbma
Date 2017-01-09.05:16:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1483938963.09.0.315595404976.issue29212@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2017-01-09 05:16:03desbmasetrecipients: + desbma
2017-01-09 05:16:03desbmasetmessageid: <1483938963.09.0.315595404976.issue29212@psf.upfronthosting.co.za>
2017-01-09 05:16:02desbmalinkissue29212 messages
2017-01-09 05:16:02desbmacreate