Or 'shell'. The support for these options can be flaky, and the
defaults change with Python version depending on what is best
supported [1].
[1]: http://docs.python.org/2/library/subprocess.html#subprocess.Popen
Reported-by: Ethan White <ethan@weecology.org>
p = _subprocess.Popen(
[command] + list(self.version_options), stdin=popen_stdin,
stdout=_subprocess.PIPE, stderr=_subprocess.PIPE,
- close_fds=True, shell=False, universal_newlines=True)
+ universal_newlines=True)
except OSError as e:
raise DependencyError(
checker=self,