| 5907 | } |
| 5908 | |
| 5909 | static PyObject * |
| 5910 | ufunc_reduceat(PyUFuncObject *ufunc, |
| 5911 | PyObject *const *args, Py_ssize_t len_args, PyObject *kwnames) |
| 5912 | { |
| 5913 | return PyUFunc_GenericReduction( |
| 5914 | ufunc, args, len_args, kwnames, UFUNC_REDUCEAT); |
| 5915 | } |
| 5916 | |
| 5917 | /* Helper for ufunc_at, below */ |
| 5918 | static inline PyArrayObject * |
nothing calls this directly
no test coverage detected