Commit 5537646b authored by Zachary Ware's avatar Zachary Ware Committed by GitHub

bpo-30121: Fix test_subprocess for Windows Debug builds (GH-5758)

parent 4c7108a7
...@@ -1179,7 +1179,7 @@ class ProcessTestCase(BaseTestCase): ...@@ -1179,7 +1179,7 @@ class ProcessTestCase(BaseTestCase):
msvcrt.CrtSetReportFile(report_type, msvcrt.CRTDBG_FILE_STDERR) msvcrt.CrtSetReportFile(report_type, msvcrt.CRTDBG_FILE_STDERR)
try: try:
subprocess.Popen([cmd], subprocess.Popen(cmd,
stdout=subprocess.PIPE, stdout=subprocess.PIPE,
stderr=subprocess.PIPE) stderr=subprocess.PIPE)
except OSError: except OSError:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment