ext/pycall/libpython.c in pycall-1.0.3 vs ext/pycall/libpython.c in pycall-1.1.0.rc1
- old
+ new
@@ -152,15 +152,19 @@
INIT_API_TABLE_ENTRY(PySlice_New, required);
INIT_API_TABLE_ENTRY(PyIter_Next, required);
+ INIT_API_TABLE_ENTRY(PyEval_ThreadsInitialized, required);
+ INIT_API_TABLE_ENTRY(PyEval_InitThreads, required);
+
INIT_API_TABLE_ENTRY(PyErr_Occurred, required);
INIT_API_TABLE_ENTRY(PyErr_Fetch, required);
INIT_API_TABLE_ENTRY(PyErr_Restore, required);
INIT_API_TABLE_ENTRY(PyErr_Clear, required);
INIT_API_TABLE_ENTRY(PyErr_SetString, required);
INIT_API_TABLE_ENTRY(PyErr_Format, required);
+ INIT_API_TABLE_ENTRY(PyErr_SetInterrupt, required);
INIT_API_TABLE_ENTRY(PyImport_ImportModule, required);
INIT_API_TABLE_ENTRY(PyImport_ImportModuleLevel, required);
INIT_API_TABLE_ENTRY(PyOS_AfterFork, required);