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 christian.heimes
Recipients amaury.forgeotdarc, asvetlov, christian.heimes, gregory.p.smith, pitrou, sbt, twouters
Date 2012-11-20.20:04:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1353441870.74.0.549569825292.issue16500@psf.upfronthosting.co.za>
In-reply-to
Content
Your suggestion is that the hooks are called as:

for hook in hooks:
    try:
        hook()
    except:
        try:
            sys.excepthook(*sys.exc_info())
        except:
            pass

That makes the implementation much easier. :)
History
Date User Action Args
2012-11-20 20:04:30christian.heimessetrecipients: + christian.heimes, twouters, gregory.p.smith, amaury.forgeotdarc, pitrou, asvetlov, sbt
2012-11-20 20:04:30christian.heimessetmessageid: <1353441870.74.0.549569825292.issue16500@psf.upfronthosting.co.za>
2012-11-20 20:04:30christian.heimeslinkissue16500 messages
2012-11-20 20:04:30christian.heimescreate