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 Arfrever, The Compiler, martin.panter, r.david.murray, serhiy.storchaka, vstinner
Date 2016-02-25.13:04:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1456405443.77.0.695339317916.issue22836@psf.upfronthosting.co.za>
In-reply-to
Content
Here is a new patch with Victor’s suggestions. The reports now look like

>>> raise BrokenStrException()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
__main__.BrokenStrException: <exception str() failed>
>>> o = VeryBroken()
>>> del o
Exception ignored in: <object repr() failed>
Traceback (most recent call last):
  File "<stdin>", line 9, in __del__
__main__.BrokenStrException: <exception str() failed>
History
Date User Action Args
2016-02-25 13:04:03martin.pantersetrecipients: + martin.panter, vstinner, Arfrever, r.david.murray, serhiy.storchaka, The Compiler
2016-02-25 13:04:03martin.pantersetmessageid: <1456405443.77.0.695339317916.issue22836@psf.upfronthosting.co.za>
2016-02-25 13:04:03martin.panterlinkissue22836 messages
2016-02-25 13:04:03martin.pantercreate