mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
bpo-26128: Added __init__to subprocess.STARTUPINFO (#171)
The Windows-specific subprocess.STARTUPINFO class now accepts keyword-only arguments to its constructor to set the various data attributes. Patch by Subhendu Ghosh.
This commit is contained in:
parent
21024f0662
commit
ae160bba20
5 changed files with 32 additions and 7 deletions
|
@ -2550,6 +2550,22 @@ class Win32ProcessTestCase(BaseTestCase):
|
|||
subprocess.call([sys.executable, "-c", "import sys; sys.exit(0)"],
|
||||
startupinfo=startupinfo)
|
||||
|
||||
def test_startupinfo_keywords(self):
|
||||
# startupinfo argument
|
||||
# We use hardcoded constants, because we do not want to
|
||||
# depend on win32all.
|
||||
STARTF_USERSHOWWINDOW = 1
|
||||
SW_MAXIMIZE = 3
|
||||
startupinfo = subprocess.STARTUPINFO(
|
||||
dwFlags=STARTF_USERSHOWWINDOW,
|
||||
wShowWindow=SW_MAXIMIZE
|
||||
)
|
||||
# Since Python is a console process, it won't be affected
|
||||
# by wShowWindow, but the argument should be silently
|
||||
# ignored
|
||||
subprocess.call([sys.executable, "-c", "import sys; sys.exit(0)"],
|
||||
startupinfo=startupinfo)
|
||||
|
||||
def test_creationflags(self):
|
||||
# creationflags argument
|
||||
CREATE_NEW_CONSOLE = 16
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue