| 43 | } |
| 44 | |
| 45 | PyObject* gc_func_vectorcall( |
| 46 | PyObject* self, |
| 47 | PyObject* const* args, |
| 48 | size_t nargs, |
| 49 | PyObject* kwnames) { |
| 50 | return PyObject_Vectorcall(((gc_func*)self)->func, args, nargs, kwnames); |
| 51 | } |
| 52 | |
| 53 | void gc_func_dealloc(PyObject* self) { |
| 54 | PyObject_GC_UnTrack(self); |
nothing calls this directly
no outgoing calls
no test coverage detected