(self)
| 469 | return self |
| 470 | |
| 471 | def __next__(self): |
| 472 | ctx = self.context |
| 473 | ctx.index0 += 1 |
| 474 | if ctx._after is _last_iteration: |
| 475 | raise StopIteration() |
| 476 | ctx._before = ctx._current |
| 477 | ctx._current = ctx._after |
| 478 | ctx._after = ctx._safe_next() |
| 479 | return ctx._current, ctx |
| 480 | |
| 481 | |
| 482 | class Macro(object): |
nothing calls this directly
no test coverage detected