| 166 | static constexpr int flags = METH_NOARGS; |
| 167 | |
| 168 | static PyObject* impl(PyObject* self, PyObject*) { |
| 169 | auto* inst = reinterpret_cast<wrap_t*>(self)->inst(); |
| 170 | try { |
| 171 | CVT_RET_PYOBJ((inst->*f)()); |
| 172 | } |
| 173 | PYEXT17_TRANSLATE_EXC_RET(nullptr) |
| 174 | } |
| 175 | }; |
| 176 | |
| 177 | template <auto f> |
| 178 | struct meth<meth_type::varkw, f> { |