[issue31701] faulthandler dumps 'Windows fatal exception: code 0xe06d7363'

STINNER Victor report at bugs.python.org
Thu Oct 5 07:48:20 EDT 2017


STINNER Victor <victor.stinner at gmail.com> added the comment:

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)) ...

----------

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue31701>
_______________________________________


More information about the Python-bugs-list mailing list