| 655 | } |
| 656 | |
| 657 | static PyObject * |
| 658 | array_bitwise_and(PyObject *m1, PyObject *m2) |
| 659 | { |
| 660 | PyObject *res; |
| 661 | |
| 662 | BINOP_GIVE_UP_IF_NEEDED(m1, m2, nb_and, array_bitwise_and); |
| 663 | if (try_binary_elide(m1, m2, &array_inplace_bitwise_and, &res, 1)) { |
| 664 | return res; |
| 665 | } |
| 666 | return PyArray_GenericBinaryFunction(m1, m2, n_ops.bitwise_and); |
| 667 | } |
| 668 | |
| 669 | static PyObject * |
| 670 | array_bitwise_or(PyObject *m1, PyObject *m2) |
nothing calls this directly
no test coverage detected