From c2362482f090db3b24c32057d72be3fa6404d261 Mon Sep 17 00:00:00 2001 From: Refael Ackermann Date: Thu, 30 Mar 2017 11:11:55 -0400 Subject: [PATCH] test: performance - remove Popen(shell=True) on Windows not needed according to official python docs - https://docs.python.org/2/library/subprocess.html#index-2 --- tools/test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/test.py b/tools/test.py index deeb7aeffe2e02..434c83840f1d31 100755 --- a/tools/test.py +++ b/tools/test.py @@ -617,7 +617,6 @@ def RunProcess(context, timeout, args, **rest): pty_out = rest.pop('pty_out') process = subprocess.Popen( - shell = utils.IsWindows(), args = popen_args, **rest )