| 753 | } |
| 754 | |
| 755 | static PyObject * |
| 756 | array_inplace_bitwise_and(PyArrayObject *m1, PyObject *m2) |
| 757 | { |
| 758 | INPLACE_GIVE_UP_IF_NEEDED( |
| 759 | m1, m2, nb_inplace_and, array_inplace_bitwise_and); |
| 760 | return PyArray_GenericInplaceBinaryFunction(m1, m2, n_ops.bitwise_and); |
| 761 | } |
| 762 | |
| 763 | static PyObject * |
| 764 | array_inplace_bitwise_or(PyArrayObject *m1, PyObject *m2) |
nothing calls this directly
no test coverage detected