| 11075 | /* PyObjectCallMethO */ |
| 11076 | #if CYTHON_COMPILING_IN_CPYTHON |
| 11077 | static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg) { |
| 11078 | PyObject *self, *result; |
| 11079 | PyCFunction cfunc; |
| 11080 | cfunc = PyCFunction_GET_FUNCTION(func); |
| 11081 | self = PyCFunction_GET_SELF(func); |
| 11082 | if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) |
| 11083 | return NULL; |
| 11084 | result = cfunc(self, arg); |
| 11085 | Py_LeaveRecursiveCall(); |
| 11086 | if (unlikely(!result) && unlikely(!PyErr_Occurred())) { |
| 11087 | PyErr_SetString( |
| 11088 | PyExc_SystemError, |
| 11089 | "NULL result without error in PyObject_Call"); |
| 11090 | } |
| 11091 | return result; |
| 11092 | } |
| 11093 | #endif |
| 11094 | |
| 11095 | /* PyObjectCallOneArg */ |
no outgoing calls
no test coverage detected