| 761 | } |
| 762 | |
| 763 | static PyObject * |
| 764 | array_inplace_bitwise_or(PyArrayObject *m1, PyObject *m2) |
| 765 | { |
| 766 | INPLACE_GIVE_UP_IF_NEEDED( |
| 767 | m1, m2, nb_inplace_or, array_inplace_bitwise_or); |
| 768 | return PyArray_GenericInplaceBinaryFunction(m1, m2, n_ops.bitwise_or); |
| 769 | } |
| 770 | |
| 771 | static PyObject * |
| 772 | array_inplace_bitwise_xor(PyArrayObject *m1, PyObject *m2) |
nothing calls this directly
no test coverage detected