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

Function __Pyx_CyFunction_traverse

eval/CIPO_evaluation/pycocotools/_mask.c:12718–12738  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12716 __Pyx__CyFunction_dealloc(m);
12717}
12718static int __Pyx_CyFunction_traverse(__pyx_CyFunctionObject *m, visitproc visit, void *arg)
12719{
12720 Py_VISIT(m->func_closure);
12721 Py_VISIT(m->func.m_module);
12722 Py_VISIT(m->func_dict);
12723 Py_VISIT(m->func_name);
12724 Py_VISIT(m->func_qualname);
12725 Py_VISIT(m->func_doc);
12726 Py_VISIT(m->func_globals);
12727 Py_VISIT(m->func_code);
12728 Py_VISIT(m->func_classobj);
12729 Py_VISIT(m->defaults_tuple);
12730 Py_VISIT(m->defaults_kwdict);
12731 if (m->defaults) {
12732 PyObject **pydefaults = __Pyx_CyFunction_Defaults(PyObject *, m);
12733 int i;
12734 for (i = 0; i < m->defaults_pyobjects; i++)
12735 Py_VISIT(pydefaults[i]);
12736 }
12737 return 0;
12738}
12739static PyObject *__Pyx_CyFunction_descr_get(PyObject *func, PyObject *obj, PyObject *type)
12740{
12741#if PY_MAJOR_VERSION < 3

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected