| 70 | {nullptr, nullptr, nullptr, nullptr, nullptr}}; |
| 71 | |
| 72 | static PyObject* gc_func_getattro(PyObject* self, PyObject* name_) { |
| 73 | gc_func* w = (gc_func*)self; |
| 74 | return PyObject_GenericGetAttr(w->orig_func, name_); |
| 75 | } |
| 76 | |
| 77 | // Table of custom type slots we want to install |
| 78 | PyType_Slot gc_func_slots[] = { |
nothing calls this directly
no outgoing calls
no test coverage detected