(self)
| 328 | return getattr(self._final, name) |
| 329 | |
| 330 | def raise_if_failed(self): |
| 331 | if self.exc is not None: |
| 332 | raise interpreters.ExecutionFailed(self.exc) |
| 333 | |
| 334 | |
| 335 | def _captured_script(script, *, stdout=True, stderr=False, exc=False): |
no outgoing calls