| 715 | } |
| 716 | |
| 717 | static PyObject * |
| 718 | array_inplace_remainder(PyArrayObject *m1, PyObject *m2) |
| 719 | { |
| 720 | INPLACE_GIVE_UP_IF_NEEDED( |
| 721 | m1, m2, nb_inplace_remainder, array_inplace_remainder); |
| 722 | return PyArray_GenericInplaceBinaryFunction(m1, m2, n_ops.remainder); |
| 723 | } |
| 724 | |
| 725 | static PyObject * |
| 726 | array_inplace_power(PyArrayObject *a1, PyObject *o2, PyObject *NPY_UNUSED(modulo)) |
nothing calls this directly
no test coverage detected