| 1956 | } |
| 1957 | |
| 1958 | NPY_NO_EXPORT Py_ssize_t |
| 1959 | npyiter_seq_length(NewNpyArrayIterObject *self) |
| 1960 | { |
| 1961 | if (self->iter == NULL) { |
| 1962 | return 0; |
| 1963 | } |
| 1964 | else { |
| 1965 | return NpyIter_GetNOp(self->iter); |
| 1966 | } |
| 1967 | } |
| 1968 | |
| 1969 | NPY_NO_EXPORT PyObject * |
| 1970 | npyiter_seq_item(NewNpyArrayIterObject *self, Py_ssize_t i) |
nothing calls this directly
no test coverage detected