get_pipe_transport(fd)
Return the transport for the communication pipe corresponding to the integer file descriptor fd:
-
0
: readable streaming transport of the standard input (stdin), orNone
if the subprocess was not created withstdin=PIPE
-
1
: writable streaming transport of the standard output (stdout), orNone
if the subprocess was not created withstdout=PIPE
-
2
: writable streaming transport of the standard error (stderr), orNone
if the subprocess was not created withstderr=PIPE
- other fd:
None
Please login to continue.