Merge branch 'develop' into mliappy_unified
This commit is contained in:
@ -243,7 +243,7 @@ void PythonImpl::command(int narg, char **arg)
|
||||
|
||||
// pFunc = function object for requested function
|
||||
|
||||
PyObject *pModule = (PyObject *) pyMain;
|
||||
auto pModule = (PyObject *) pyMain;
|
||||
PyObject *pFunc = PyObject_GetAttrString(pModule, pfuncs[ifunc].name);
|
||||
|
||||
if (!pFunc) {
|
||||
@ -273,7 +273,7 @@ void PythonImpl::invoke_function(int ifunc, char *result)
|
||||
PyObject *pValue;
|
||||
char *str;
|
||||
|
||||
PyObject *pFunc = (PyObject *) pfuncs[ifunc].pFunc;
|
||||
auto pFunc = (PyObject *) pfuncs[ifunc].pFunc;
|
||||
|
||||
// create Python tuple of input arguments
|
||||
|
||||
|
||||
Reference in New Issue
Block a user