| 604 | } |
| 605 | |
| 606 | static PyObject * |
| 607 | array_negative(PyArrayObject *m1) |
| 608 | { |
| 609 | if (can_elide_temp_unary(m1)) { |
| 610 | return PyArray_GenericInplaceUnaryFunction(m1, n_ops.negative); |
| 611 | } |
| 612 | return PyArray_GenericUnaryFunction(m1, n_ops.negative); |
| 613 | } |
| 614 | |
| 615 | static PyObject * |
| 616 | array_absolute(PyArrayObject *m1) |
nothing calls this directly
no test coverage detected