We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 350d9a1 commit e99c111Copy full SHA for e99c111
graalpython/com.oracle.graal.python.cext/src/errors.c
@@ -43,7 +43,7 @@
43
#undef PyErr_BadInternalCall
44
void PyErr_BadInternalCall(void) {
45
assert(0 && "bad argument to internal function");
46
- Graal_PyTruffleErr_CreateAndSetException(PyExc_SystemError, truffleString("bad argument to internal function"));
+ PyErr_SetString(PyExc_SystemError, "bad argument to internal function");
47
}
48
#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)
49
0 commit comments