| 707 | } |
| 708 | |
| 709 | static PyObject * |
| 710 | array_inplace_multiply(PyArrayObject *m1, PyObject *m2) |
| 711 | { |
| 712 | INPLACE_GIVE_UP_IF_NEEDED( |
| 713 | m1, m2, nb_inplace_multiply, array_inplace_multiply); |
| 714 | return PyArray_GenericInplaceBinaryFunction(m1, m2, n_ops.multiply); |
| 715 | } |
| 716 | |
| 717 | static PyObject * |
| 718 | array_inplace_remainder(PyArrayObject *m1, PyObject *m2) |
nothing calls this directly
no test coverage detected