(self, name)
| 322 | self._finish() |
| 323 | return len(self._final) |
| 324 | def __getattr__(self, name): |
| 325 | self._finish() |
| 326 | if name.startswith('_'): |
| 327 | raise AttributeError(name) |
| 328 | return getattr(self._final, name) |
| 329 | |
| 330 | def raise_if_failed(self): |
| 331 | if self.exc is not None: |
nothing calls this directly
no test coverage detected