| 585 | } |
| 586 | |
| 587 | static PyObject * |
| 588 | array_tolist(PyArrayObject *self, PyObject *args) |
| 589 | { |
| 590 | if (!PyArg_ParseTuple(args, "")) { |
| 591 | return NULL; |
| 592 | } |
| 593 | return PyArray_ToList(self); |
| 594 | } |
| 595 | |
| 596 | |
| 597 | static PyObject * |
nothing calls this directly
no test coverage detected