| 745 | } |
| 746 | |
| 747 | static PyObject * |
| 748 | array_inplace_right_shift(PyArrayObject *m1, PyObject *m2) |
| 749 | { |
| 750 | INPLACE_GIVE_UP_IF_NEEDED( |
| 751 | m1, m2, nb_inplace_rshift, array_inplace_right_shift); |
| 752 | return PyArray_GenericInplaceBinaryFunction(m1, m2, n_ops.right_shift); |
| 753 | } |
| 754 | |
| 755 | static PyObject * |
| 756 | array_inplace_bitwise_and(PyArrayObject *m1, PyObject *m2) |
nothing calls this directly
no test coverage detected