| 613 | } |
| 614 | |
| 615 | static PyObject * |
| 616 | array_absolute(PyArrayObject *m1) |
| 617 | { |
| 618 | if (can_elide_temp_unary(m1) && !PyArray_ISCOMPLEX(m1)) { |
| 619 | return PyArray_GenericInplaceUnaryFunction(m1, n_ops.absolute); |
| 620 | } |
| 621 | return PyArray_GenericUnaryFunction(m1, n_ops.absolute); |
| 622 | } |
| 623 | |
| 624 | static PyObject * |
| 625 | array_invert(PyArrayObject *m1) |
nothing calls this directly
no test coverage detected