| 12711 | PyObject_GC_Del(m); |
| 12712 | } |
| 12713 | static void __Pyx_CyFunction_dealloc(__pyx_CyFunctionObject *m) |
| 12714 | { |
| 12715 | PyObject_GC_UnTrack(m); |
| 12716 | __Pyx__CyFunction_dealloc(m); |
| 12717 | } |
| 12718 | static int __Pyx_CyFunction_traverse(__pyx_CyFunctionObject *m, visitproc visit, void *arg) |
| 12719 | { |
| 12720 | Py_VISIT(m->func_closure); |
nothing calls this directly
no test coverage detected