| 1449 | } |
| 1450 | |
| 1451 | static PyObject * |
| 1452 | arraymultiter_index_get(PyArrayMultiIterObject *self, void *NPY_UNUSED(ignored)) |
| 1453 | { |
| 1454 | return PyArray_PyIntFromIntp(self->index); |
| 1455 | } |
| 1456 | |
| 1457 | static PyObject * |
| 1458 | arraymultiter_shape_get(PyArrayMultiIterObject *self, void *NPY_UNUSED(ignored)) |
nothing calls this directly
no test coverage detected