Specifically invoke p4 on the command supplied.
(c, *k, **kw)
| 408 | |
| 409 | |
| 410 | def p4_read_pipe_lines(c, *k, **kw): |
| 411 | """Specifically invoke p4 on the command supplied.""" |
| 412 | real_cmd = p4_build_cmd(c) |
| 413 | return read_pipe_lines(real_cmd, *k, **kw) |
| 414 | |
| 415 | |
| 416 | def p4_has_command(cmd): |
no test coverage detected