Home | History | Annotate | Download | only in Lib

Lines Matching defs:STARTUPINFO

63     class STARTUPINFO:
327 startupinfo and creationflags (Windows only)
338 startupinfo=None, creationflags=0):
355 if startupinfo is not None:
356 raise ValueError("startupinfo is only supported on Windows "
391 startupinfo, creationflags, shell, to_close,
592 startupinfo, creationflags, shell, to_close,
602 if startupinfo is None:
603 startupinfo = STARTUPINFO()
605 startupinfo.dwFlags |= _subprocess.STARTF_USESTDHANDLES
606 startupinfo.hStdInput = p2cread
607 startupinfo.hStdOutput = c2pwrite
608 startupinfo.hStdError = errwrite
611 startupinfo.dwFlags |= _subprocess.STARTF_USESHOWWINDOW
612 startupinfo.wShowWindow = _subprocess.SW_HIDE
644 startupinfo)
902 startupinfo, creationflags, shell, to_close,