(process_wrapper)
| 515 | |
| 516 | |
| 517 | def wait_and_read(process_wrapper): |
| 518 | thread = threading.Thread(target=process_wrapper.wait_finish, daemon=True) |
| 519 | thread.start() |
| 520 | thread.join(timeout=0.1) |
| 521 | |
| 522 | return ''.join(read_until_closed(process_wrapper.output_stream)) |
| 523 | |
| 524 | |
| 525 | def wrap_values(parameters, values): |
nothing calls this directly
no test coverage detected