| 4517 | } |
| 4518 | |
| 4519 | PyObject *value() const { |
| 4520 | if (base::current == end) { |
| 4521 | throw stop_iteration(); |
| 4522 | } else { |
| 4523 | return from(static_cast<const value_type&>(*(base::current))); |
| 4524 | } |
| 4525 | } |
| 4526 | |
| 4527 | SwigPyIterator *copy() const |
| 4528 | { |
nothing calls this directly
no test coverage detected