| 737 | } |
| 738 | |
| 739 | static PyObject * |
| 740 | array_inplace_left_shift(PyArrayObject *m1, PyObject *m2) |
| 741 | { |
| 742 | INPLACE_GIVE_UP_IF_NEEDED( |
| 743 | m1, m2, nb_inplace_lshift, array_inplace_left_shift); |
| 744 | return PyArray_GenericInplaceBinaryFunction(m1, m2, n_ops.left_shift); |
| 745 | } |
| 746 | |
| 747 | static PyObject * |
| 748 | array_inplace_right_shift(PyArrayObject *m1, PyObject *m2) |
nothing calls this directly
no test coverage detected