Skip to content

Commit 2c832ef

Browse files
committed
PyErr_NormalizeException
1 parent 5d4c747 commit 2c832ef

File tree

1 file changed

+5
-0
lines changed
  • graalpython/com.oracle.graal.python.cext/src

1 file changed

+5
-0
lines changed

graalpython/com.oracle.graal.python.cext/src/errors.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,3 +156,8 @@ void PyErr_WriteUnraisable(PyObject *obj) {
156156
void PyErr_Display(PyObject *exception, PyObject *value, PyObject *tb) {
157157
UPCALL_CEXT_VOID("PyErr_Display", native_to_java(exception), native_to_java(value), native_to_java(tb));
158158
}
159+
160+
void PyErr_NormalizeException(PyObject **exc, PyObject **val, PyObject **tb) {
161+
// TODO (tfel): do we have to?
162+
return;
163+
}

0 commit comments

Comments
 (0)