| 1455 | } |
| 1456 | |
| 1457 | static PyObject * |
| 1458 | arraymultiter_shape_get(PyArrayMultiIterObject *self, void *NPY_UNUSED(ignored)) |
| 1459 | { |
| 1460 | return PyArray_IntTupleFromIntp(self->nd, self->dimensions); |
| 1461 | } |
| 1462 | |
| 1463 | static PyObject * |
| 1464 | arraymultiter_iters_get(PyArrayMultiIterObject *self, void *NPY_UNUSED(ignored)) |
nothing calls this directly
no test coverage detected