| 667 | } |
| 668 | |
| 669 | static PyObject * |
| 670 | array_bitwise_or(PyObject *m1, PyObject *m2) |
| 671 | { |
| 672 | PyObject *res; |
| 673 | |
| 674 | BINOP_GIVE_UP_IF_NEEDED(m1, m2, nb_or, array_bitwise_or); |
| 675 | if (try_binary_elide(m1, m2, &array_inplace_bitwise_or, &res, 1)) { |
| 676 | return res; |
| 677 | } |
| 678 | return PyArray_GenericBinaryFunction(m1, m2, n_ops.bitwise_or); |
| 679 | } |
| 680 | |
| 681 | static PyObject * |
| 682 | array_bitwise_xor(PyObject *m1, PyObject *m2) |
nothing calls this directly
no test coverage detected