(self)
| 311 | def __init__(self, capturing): |
| 312 | self._capturing = capturing |
| 313 | def _finish(self): |
| 314 | if self._capturing is None: |
| 315 | return |
| 316 | self._final = self._capturing.final() |
| 317 | self._capturing = None |
| 318 | def __iter__(self): |
| 319 | self._finish() |
| 320 | yield from self._final |
no test coverage detected