NUMPY_API * To List */
| 116 | * To List |
| 117 | */ |
| 118 | NPY_NO_EXPORT PyObject * |
| 119 | PyArray_ToList(PyArrayObject *self) |
| 120 | { |
| 121 | return recursive_tolist(self, PyArray_DATA(self), 0); |
| 122 | } |
| 123 | |
| 124 | /* XXX: FIXME --- add ordering argument to |
| 125 | Allow Fortran ordering on write |
no test coverage detected