()
| 102 | print(line, file=sys.stdout) |
| 103 | |
| 104 | def stderr_read(): |
| 105 | for line in read_no_interrupt(p.stderr).splitlines(): |
| 106 | line = line.decode(enc, 'replace') |
| 107 | print(line, file=sys.stderr) |
| 108 | |
| 109 | Thread(target=stdout_read).start() |
| 110 | Thread(target=stderr_read).start() |
nothing calls this directly
no test coverage detected