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

This commit is contained in:
Zachary Ware 2018-02-19 14:02:38 -06:00 committed by GitHub
parent 4c7108a771
commit 5537646bfa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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: