| 1069 | }; |
| 1070 | |
| 1071 | static PyObject * |
| 1072 | iter_index_get(PyArrayIterObject *self, void *NPY_UNUSED(ignored)) |
| 1073 | { |
| 1074 | return PyArray_PyIntFromIntp(self->index); |
| 1075 | } |
| 1076 | |
| 1077 | static PyObject * |
| 1078 | iter_coords_get(PyArrayIterObject *self, void *NPY_UNUSED(ignored)) |
nothing calls this directly
no test coverage detected