From f912a13dc29dfa8962047436a922e17dbb1cd1ab Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Mon, 19 Feb 2018 13:47:23 -0600 Subject: [PATCH] bpo-30121: Fix test_subprocess for Windows Debug builds --- Lib/test/test_subprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index 858a7013120586..b3ccb0de63a84c 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -1179,7 +1179,7 @@ def test_nonexisting_with_pipes(self): msvcrt.CrtSetReportFile(report_type, msvcrt.CRTDBG_FILE_STDERR) try: - subprocess.Popen([cmd], + subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) except OSError: