(self, block: Block)
| 47 | pass |
| 48 | |
| 49 | def parse(self, block: Block) -> None: |
| 50 | namespace = create_parser_namespace() |
| 51 | with contextlib.redirect_stdout(io.StringIO()) as s: |
| 52 | exec(block.input, namespace) |
| 53 | block.output = s.getvalue() |
nothing calls this directly
no test coverage detected