| 783 | |
| 784 | #ifndef METH_FASTCALL |
| 785 | PyObject* py35_make_custom_op(PyObject* self, PyObject* args) { |
| 786 | auto* arr = &PyTuple_GET_ITEM(args, 0); |
| 787 | auto size = PyTuple_GET_SIZE(args); |
| 788 | return make_custom_op(self, arr, size); |
| 789 | }; |
| 790 | #endif |
| 791 | |
| 792 | void init_custom(pybind11::module m) { |
nothing calls this directly
no test coverage detected