summaryrefslogtreecommitdiff
path: root/setuptools/tests/environment.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/tests/environment.py')
-rw-r--r--setuptools/tests/environment.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/setuptools/tests/environment.py b/setuptools/tests/environment.py
index fa26a9ec..5fdbd969 100644
--- a/setuptools/tests/environment.py
+++ b/setuptools/tests/environment.py
@@ -96,10 +96,12 @@ def run_setup_py(cmd, pypath=None, path=None,
cmd = [sys.executable, "setup.py"] + list(cmd)
- #regarding the shell argument, see: http://bugs.python.org/issue8557
+ # http://bugs.python.org/issue8557
+ shell = sys.platform == 'win32'
+
try:
proc = _Popen(cmd, stdout=_PIPE, stderr=_PIPE,
- shell=(sys.platform == 'win32'), env=env)
+ shell=shell, env=env)
data = proc.communicate()[data_stream]
except OSError: