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 Fynn Be
Recipients Fynn Be, paul.moore, steve.dower, tim.golden, vstinner, zach.ware
Date 2017-10-05.10:15:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1507198527.7.0.213398074469.issue31701@psf.upfronthosting.co.za>
In-reply-to
Content
In the github repository there is 'build.bat' that creates the mscv 14 solution, builds it and runs the 'test.py'.
Here is the output:
```
Windows fatal exception: code 0xe06d7363

Current thread 0x0000462c (most recent call first):
  File "test.py", line 5 in <module>
caught test error: c++ error message
```

The 'Windows fatal exception: code 0xe06d7363' is only caused by a c++ exception thrown (regardless if it is handled or not). More on the error code is here:
https://support.microsoft.com/de-de/help/185294/prb-exception-code-0xe06d7363-when-calling-win32-seh-apis

The last line 'caught test error: c++ error message' is generated within the test module, where the error is caught.

In larger projects these tracebacks spam the faulthandler's output, as this is valid code and occurs often (for example for an IndexError raised in a c++ extension to end a for loop).
History
Date User Action Args
2017-10-05 10:15:27Fynn Besetrecipients: + Fynn Be, paul.moore, vstinner, tim.golden, zach.ware, steve.dower
2017-10-05 10:15:27Fynn Besetmessageid: <1507198527.7.0.213398074469.issue31701@psf.upfronthosting.co.za>
2017-10-05 10:15:27Fynn Belinkissue31701 messages
2017-10-05 10:15:27Fynn Becreate