Home | History | Annotate | Download | only in asyncio

Lines Matching defs:STDOUT

28 STDOUT = subprocess.STDOUT
179 The stdin, stdout, stderr are None or instances of PipeHandle.
181 def __init__(self, args, stdin=None, stdout=None, stderr=None, **kwds):
191 if stdout == PIPE:
195 stdout_wfd = stdout
199 elif stderr == STDOUT:
204 super().__init__(args, stdin=stdin_rfd, stdout=stdout_wfd,
215 self.stdout = PipeHandle(stdout_rh)
221 if stdout == PIPE: