| 643 | } |
| 644 | |
| 645 | static PyObject * |
| 646 | array_right_shift(PyObject *m1, PyObject *m2) |
| 647 | { |
| 648 | PyObject *res; |
| 649 | |
| 650 | BINOP_GIVE_UP_IF_NEEDED(m1, m2, nb_rshift, array_right_shift); |
| 651 | if (try_binary_elide(m1, m2, &array_inplace_right_shift, &res, 0)) { |
| 652 | return res; |
| 653 | } |
| 654 | return PyArray_GenericBinaryFunction(m1, m2, n_ops.right_shift); |
| 655 | } |
| 656 | |
| 657 | static PyObject * |
| 658 | array_bitwise_and(PyObject *m1, PyObject *m2) |
nothing calls this directly
no test coverage detected