| 58 | /************************************************************************/ |
| 59 | |
| 60 | static PyObject *CallPython(PyObject *function) |
| 61 | { |
| 62 | PyObject *pyArgs = PyTuple_New(0); |
| 63 | PyObject *pRet = PyObject_Call(function, pyArgs, nullptr); |
| 64 | Py_DecRef(pyArgs); |
| 65 | return pRet; |
| 66 | } |
| 67 | |
| 68 | /************************************************************************/ |
| 69 | /* CallPython() */ |
no outgoing calls
no test coverage detected