| 5891 | |
| 5892 | |
| 5893 | static PyObject * |
| 5894 | ufunc_reduce(PyUFuncObject *ufunc, |
| 5895 | PyObject *const *args, Py_ssize_t len_args, PyObject *kwnames) |
| 5896 | { |
| 5897 | return PyUFunc_GenericReduction( |
| 5898 | ufunc, args, len_args, kwnames, UFUNC_REDUCE); |
| 5899 | } |
| 5900 | |
| 5901 | static PyObject * |
| 5902 | ufunc_accumulate(PyUFuncObject *ufunc, |
nothing calls this directly
no test coverage detected