(self, script)
| 563 | |
| 564 | @contextlib.contextmanager |
| 565 | def capturing(self, script): |
| 566 | wrapped, capturing = _captured_script(script, stdout=True, exc=True) |
| 567 | #_dump_script(wrapped) |
| 568 | with capturing: |
| 569 | yield wrapped, capturing.final(force=True) |
| 570 | |
| 571 | @requires_test_modules |
| 572 | def run_from_capi(self, interpid, script, *, main=False): |
no test coverage detected