Commit 92598427 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Enable CAPI reraises

I had added the ability but forgot to turn it on.
parent 2d7d24ca
......@@ -185,7 +185,9 @@ extern "C" void raise3_capi(Box* arg0, Box* arg1, Box* arg2) noexcept {
exc_info = e;
}
assert(!reraise); // would get thrown away
if (reraise)
startReraise();
PyErr_Restore(exc_info.type, exc_info.value, exc_info.traceback);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment