(c, stdin, *k, **kw)
| 340 | |
| 341 | |
| 342 | def p4_write_pipe(c, stdin, *k, **kw): |
| 343 | real_cmd = p4_build_cmd(c) |
| 344 | if bytes is not str and isinstance(stdin, str): |
| 345 | stdin = encode_text_stream(stdin) |
| 346 | return write_pipe(real_cmd, stdin, *k, **kw) |
| 347 | |
| 348 | |
| 349 | def read_pipe_full(c, *k, **kw): |
no test coverage detected