| 29 | }; |
| 30 | |
| 31 | int gc_func_tp_clear(PyObject* self) { |
| 32 | gc_func* w = (gc_func*)self; |
| 33 | Py_CLEAR(w->func); |
| 34 | return 0; |
| 35 | } |
| 36 | |
| 37 | PyObject* gc_func_get_doc(PyObject* self, void*) { |
| 38 | return PyObject_GetAttrString(((gc_func*)self)->func, "__doc__"); |
nothing calls this directly
no outgoing calls
no test coverage detected