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

Function __Pyx_CyFunction_set_doc

eval/CIPO_evaluation/pycocotools/_mask.c:12365–12376  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12363 return op->func_doc;
12364}
12365static int
12366__Pyx_CyFunction_set_doc(__pyx_CyFunctionObject *op, PyObject *value, CYTHON_UNUSED void *context)
12367{
12368 PyObject *tmp = op->func_doc;
12369 if (value == NULL) {
12370 value = Py_None;
12371 }
12372 Py_INCREF(value);
12373 op->func_doc = value;
12374 Py_XDECREF(tmp);
12375 return 0;
12376}
12377static PyObject *
12378__Pyx_CyFunction_get_name(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context)
12379{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected