| 35 | } |
| 36 | |
| 37 | PyObject* gc_func_get_doc(PyObject* self, void*) { |
| 38 | return PyObject_GetAttrString(((gc_func*)self)->func, "__doc__"); |
| 39 | } |
| 40 | |
| 41 | PyObject* gc_func_get_sig(PyObject* self, void*) { |
| 42 | return PyObject_GetAttrString(((gc_func*)self)->func, "__nb_signature__"); |
nothing calls this directly
no outgoing calls
no test coverage detected