(p)
| 27 | |
| 28 | # XXX (ncoghlan): Move to script_helper and make consistent with run_python |
| 29 | def _kill_python_and_exit_code(p): |
| 30 | data = kill_python(p) |
| 31 | returncode = p.wait() |
| 32 | return data, returncode |
| 33 | |
| 34 | |
| 35 | class CmdLineTest(unittest.TestCase): |
no test coverage detected
searching dependent graphs…