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 b26367b commit 983ea1cCopy full SHA for 983ea1c
graalpython/com.oracle.graal.python.cext/src/ceval.c
@@ -47,3 +47,10 @@ int _Py_CheckRecursionLimit = Py_DEFAULT_RECURSION_LIMIT;
47
PyObject* PyEval_CallObjectWithKeywords(PyObject *func, PyObject *args, PyObject *kwargs) {
48
return PyObject_Call(func, args, kwargs);
49
}
50
+
51
+PyThreadState* PyEval_SaveThread() {
52
+ return NULL;
53
+}
54
55
+void PyEval_RestoreThread(PyThreadState *ptr) {
56
0 commit comments