| 595 | } |
| 596 | |
| 597 | static PyObject * |
| 598 | array_positive(PyArrayObject *m1) |
| 599 | { |
| 600 | if (can_elide_temp_unary(m1)) { |
| 601 | return PyArray_GenericInplaceUnaryFunction(m1, n_ops.positive); |
| 602 | } |
| 603 | return PyArray_GenericUnaryFunction(m1, n_ops.positive); |
| 604 | } |
| 605 | |
| 606 | static PyObject * |
| 607 | array_negative(PyArrayObject *m1) |
nothing calls this directly
no test coverage detected