Home | History | Annotate | Download | only in Lib

Lines Matching refs:startupinfo

63     class STARTUPINFO:
323 startupinfo and creationflags (Windows only)
334 startupinfo=None, creationflags=0):
351 if startupinfo is not None:
352 raise ValueError("startupinfo is only supported on Windows "
387 startupinfo, creationflags, shell, to_close,
588 startupinfo, creationflags, shell, to_close,
598 if startupinfo is None:
599 startupinfo = STARTUPINFO()
601 startupinfo.dwFlags |= _subprocess.STARTF_USESTDHANDLES
602 startupinfo.hStdInput = p2cread
603 startupinfo.hStdOutput = c2pwrite
604 startupinfo.hStdError = errwrite
607 startupinfo.dwFlags |= _subprocess.STARTF_USESHOWWINDOW
608 startupinfo.wShowWindow = _subprocess.SW_HIDE
640 startupinfo)
882 startupinfo, creationflags, shell, to_close,