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 RazerM, martin.panter, ncoghlan, r.david.murray, yselivanov
Date 2015-10-06.23:21:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1444173703.39.0.083622486106.issue25322@psf.upfronthosting.co.za>
In-reply-to
Content
My suggested fix would look like:

with ignore_exceptions:
    with ignore_exceptions:  # Check nested usage 
        len(5)
    ignored = True
    1/0
self.assertTrue(ignored)
History
Date User Action Args
2015-10-06 23:21:43martin.pantersetrecipients: + martin.panter, ncoghlan, r.david.murray, yselivanov, RazerM
2015-10-06 23:21:43martin.pantersetmessageid: <1444173703.39.0.083622486106.issue25322@psf.upfronthosting.co.za>
2015-10-06 23:21:43martin.panterlinkissue25322 messages
2015-10-06 23:21:43martin.pantercreate