Message260855
| 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> |
|