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 rhettinger
Recipients alex, ncoghlan, rhettinger
Date 2012-08-29.06:06:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1346220375.94.0.150495606189.issue15806@psf.upfronthosting.co.za>
In-reply-to
Content
Yes, something along those lines would be *much* better:

class Ignore:
    ''' Context manager to ignore particular exceptions'''

    def __init__(self, *ignored_exceptions):
        self.ignored_exceptions = ignored_exceptions

    def __enter__(self):
        return self

    def __exit__(self, exctype, excinst, exctb):
        return exctype and issubclass(exctype, self.ignored_exceptions)
History
Date User Action Args
2012-08-29 06:06:15rhettingersetrecipients: + rhettinger, ncoghlan, alex
2012-08-29 06:06:15rhettingersetmessageid: <1346220375.94.0.150495606189.issue15806@psf.upfronthosting.co.za>
2012-08-29 06:06:15rhettingerlinkissue15806 messages
2012-08-29 06:06:15rhettingercreate