| 679 | } |
| 680 | |
| 681 | static PyObject * |
| 682 | array_bitwise_xor(PyObject *m1, PyObject *m2) |
| 683 | { |
| 684 | PyObject *res; |
| 685 | |
| 686 | BINOP_GIVE_UP_IF_NEEDED(m1, m2, nb_xor, array_bitwise_xor); |
| 687 | if (try_binary_elide(m1, m2, &array_inplace_bitwise_xor, &res, 1)) { |
| 688 | return res; |
| 689 | } |
| 690 | return PyArray_GenericBinaryFunction(m1, m2, n_ops.bitwise_xor); |
| 691 | } |
| 692 | |
| 693 | static PyObject * |
| 694 | array_inplace_add(PyArrayObject *m1, PyObject *m2) |
nothing calls this directly
no test coverage detected