MCPcopy Create free account
hub / github.com/OpenDriveLab/OpenLane / __Pyx_PyObject_CallMethO

Function __Pyx_PyObject_CallMethO

eval/CIPO_evaluation/pycocotools/_mask.c:11077–11092  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11075/* PyObjectCallMethO */
11076#if CYTHON_COMPILING_IN_CPYTHON
11077static 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 */

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected