(interp, request)
| 31 | |
| 32 | |
| 33 | def _run_output(interp, request): |
| 34 | script, rpipe = _captured_script(request) |
| 35 | with rpipe: |
| 36 | _interpreters.run_string(interp, script) |
| 37 | return rpipe.read() |
| 38 | |
| 39 | |
| 40 | def _wait_for_interp_to_run(interp, timeout=None): |
no test coverage detected
searching dependent graphs…