| 1025 | } |
| 1026 | |
| 1027 | static PyObject * |
| 1028 | iter_copy(PyArrayIterObject *it, PyObject *args) |
| 1029 | { |
| 1030 | if (!PyArg_ParseTuple(args, "")) { |
| 1031 | return NULL; |
| 1032 | } |
| 1033 | return PyArray_Flatten(it->ao, 0); |
| 1034 | } |
| 1035 | |
| 1036 | static PyMethodDef iter_methods[] = { |
| 1037 | /* to get array */ |
nothing calls this directly
no test coverage detected