| 769 | } |
| 770 | |
| 771 | static PyObject * |
| 772 | array_inplace_bitwise_xor(PyArrayObject *m1, PyObject *m2) |
| 773 | { |
| 774 | INPLACE_GIVE_UP_IF_NEEDED( |
| 775 | m1, m2, nb_inplace_xor, array_inplace_bitwise_xor); |
| 776 | return PyArray_GenericInplaceBinaryFunction(m1, m2, n_ops.bitwise_xor); |
| 777 | } |
| 778 | |
| 779 | static PyObject * |
| 780 | array_floor_divide(PyObject *m1, PyObject *m2) |
nothing calls this directly
no test coverage detected