| 1373 | } |
| 1374 | |
| 1375 | static PyObject * |
| 1376 | npyiter_debug_print(NewNpyArrayIterObject *self, PyObject *NPY_UNUSED(args)) |
| 1377 | { |
| 1378 | if (self->iter != NULL) { |
| 1379 | NpyIter_DebugPrint(self->iter); |
| 1380 | } |
| 1381 | else { |
| 1382 | printf("Iterator: (nil)\n"); |
| 1383 | } |
| 1384 | |
| 1385 | Py_RETURN_NONE; |
| 1386 | } |
| 1387 | |
| 1388 | NPY_NO_EXPORT PyObject * |
| 1389 | npyiter_seq_item(NewNpyArrayIterObject *self, Py_ssize_t i); |
nothing calls this directly
no test coverage detected