| 1443 | } |
| 1444 | |
| 1445 | static PyObject * |
| 1446 | arraymultiter_size_get(PyArrayMultiIterObject *self, void *NPY_UNUSED(ignored)) |
| 1447 | { |
| 1448 | return PyArray_PyIntFromIntp(self->size); |
| 1449 | } |
| 1450 | |
| 1451 | static PyObject * |
| 1452 | arraymultiter_index_get(PyArrayMultiIterObject *self, void *NPY_UNUSED(ignored)) |
nothing calls this directly
no test coverage detected