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 vstinner
Recipients Fynn Be, paul.moore, steve.dower, tim.golden, vstinner, zach.ware
Date 2017-10-05.11:48:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1507204100.45.0.213398074469.issue31701@psf.upfronthosting.co.za>
In-reply-to
Content
The code of the current faulthandler exception handler lives at:

https://github.com/python/cpython/blob/master/Modules/faulthandler.c#L364-L409

--

https://support.microsoft.com/de-de/help/185294/prb-exception-code-0xe06d7363-when-calling-win32-seh-apis

"""
Resolution

(...)
3. Within the Exceptions dialog box, select error 0xE06D7363.
4. Change the value of Action from Stop if not handled to Stop always.
"""

Are you asking to *ignore* all 0xE06D7363 exceptions?

I don't know well Windows exceptions. The latest change was bpo-30557, ignore non-fatal exceptions:

    /* bpo-30557: only log fatal exceptions */
    if (!(code & 0x80000000)) ...
History
Date User Action Args
2017-10-05 11:48:20vstinnersetrecipients: + vstinner, paul.moore, tim.golden, zach.ware, steve.dower, Fynn Be
2017-10-05 11:48:20vstinnersetmessageid: <1507204100.45.0.213398074469.issue31701@psf.upfronthosting.co.za>
2017-10-05 11:48:20vstinnerlinkissue31701 messages
2017-10-05 11:48:20vstinnercreate