| 2606 | |
| 2607 | |
| 2608 | static PyObject * |
| 2609 | array_conjugate(PyArrayObject *self, PyObject *args) |
| 2610 | { |
| 2611 | PyArrayObject *out = NULL; |
| 2612 | if (!PyArg_ParseTuple(args, "|O&:conjugate", |
| 2613 | PyArray_OutputConverter, |
| 2614 | &out)) { |
| 2615 | return NULL; |
| 2616 | } |
| 2617 | return PyArray_Conjugate(self, out); |
| 2618 | } |
| 2619 | |
| 2620 | |
| 2621 | static PyObject * |
nothing calls this directly
no test coverage detected