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 martin.panter
Recipients adaptivelogic, eric.snow, gvanrossum, mahmoud, martin.panter, martius, ncoghlan, ned.deily, pitrou, python-dev, rbcollins, rhettinger, terry.reedy, vstinner, xonatius, yselivanov
Date 2016-06-29.05:00:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1467176426.31.0.624790193146.issue17911@psf.upfronthosting.co.za>
In-reply-to
Content
Robert: in issue17911-2.patch (and the eventual commit) you added a check for value == 'None' in _format_final_exc_line(). Why was this necessary? I think it is the cause of my Issue 27348 regression:

>>> traceback.format_exception(Exception, Exception("One"), None)
['Exception: One\n']
>>> traceback.format_exception(Exception, Exception("None"), None)
['Exception\n']
History
Date User Action Args
2016-06-29 05:00:26martin.pantersetrecipients: + martin.panter, gvanrossum, rhettinger, terry.reedy, ncoghlan, pitrou, vstinner, rbcollins, ned.deily, python-dev, eric.snow, mahmoud, yselivanov, adaptivelogic, martius, xonatius
2016-06-29 05:00:26martin.pantersetmessageid: <1467176426.31.0.624790193146.issue17911@psf.upfronthosting.co.za>
2016-06-29 05:00:26martin.panterlinkissue17911 messages
2016-06-29 05:00:25martin.pantercreate