| 699 | } |
| 700 | |
| 701 | static PyObject * |
| 702 | array_inplace_subtract(PyArrayObject *m1, PyObject *m2) |
| 703 | { |
| 704 | INPLACE_GIVE_UP_IF_NEEDED( |
| 705 | m1, m2, nb_inplace_subtract, array_inplace_subtract); |
| 706 | return PyArray_GenericInplaceBinaryFunction(m1, m2, n_ops.subtract); |
| 707 | } |
| 708 | |
| 709 | static PyObject * |
| 710 | array_inplace_multiply(PyArrayObject *m1, PyObject *m2) |
nothing calls this directly
no test coverage detected