| 38 | |
| 39 | struct generic_iterator { |
| 40 | generic_iterator(bp::object o) : iterable(o), size(bp::len(iterable)) {} |
| 41 | bp::object next() { |
| 42 | if (idx == size) { |
| 43 | PyErr_SetString(PyExc_StopIteration, "No more items."); |
nothing calls this directly
no outgoing calls
no test coverage detected