Message303755
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). |
|
Date |
User |
Action |
Args |
2017-10-05 10:15:27 | Fynn Be | set | recipients:
+ Fynn Be, paul.moore, vstinner, tim.golden, zach.ware, steve.dower |
2017-10-05 10:15:27 | Fynn Be | set | messageid: <1507198527.7.0.213398074469.issue31701@psf.upfronthosting.co.za> |
2017-10-05 10:15:27 | Fynn Be | link | issue31701 messages |
2017-10-05 10:15:27 | Fynn Be | create | |
|