| 1010 | return 0; |
| 1011 | } |
| 1012 | int py_custom_function_tp_clear(PyObject* self) { |
| 1013 | auto* p = nb::inst_ptr<PyCustomFunction>(self); |
| 1014 | p->reset(); |
| 1015 | return 0; |
| 1016 | } |
| 1017 | PyType_Slot py_custom_function_slots[] = { |
| 1018 | {Py_tp_traverse, (void*)py_custom_function_tp_traverse}, |
| 1019 | {Py_tp_clear, (void*)py_custom_function_tp_clear}, |