[issue27348] traceback (and threading) drops exception message

Martin Panter report at bugs.python.org
Wed Jun 29 01:00:41 EDT 2016


Martin Panter added the comment:

I traced this back to revision 73afda5a4e4c (Issue 17911), which includes this change to traceback._format_final_exc_line():

-if value is None or not valuestr:
+if value == 'None' or value is None or not valuestr:

----------
components: +Library (Lib)
keywords: +3.5regression
title: Non-main thread exception handler drops exception message -> traceback (and threading) drops exception message
type:  -> behavior

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


More information about the Python-bugs-list mailing list