Merge 37dd98ca210fb8132575bedd719c6f8f9bfd1021 into df129c7ba30aaa9ffffb81a48f53aa7253b0b4e6

This commit is contained in:
Charles Newey 2023-07-17 16:21:04 +00:00 committed by GitHub
commit 52162f6c78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -281,7 +281,7 @@ def run_async(
.. _subprocess Popen: https://docs.python.org/3/library/subprocess.html#popen-objects .. _subprocess Popen: https://docs.python.org/3/library/subprocess.html#popen-objects
""" """
args = compile(stream_spec, cmd, overwrite_output=overwrite_output) args = compile(stream_spec, cmd, overwrite_output=overwrite_output)
stdin_stream = subprocess.PIPE if pipe_stdin else None stdin_stream = subprocess.PIPE if pipe_stdin else subprocess.DEVNULL
stdout_stream = subprocess.PIPE if pipe_stdout else None stdout_stream = subprocess.PIPE if pipe_stdout else None
stderr_stream = subprocess.PIPE if pipe_stderr else None stderr_stream = subprocess.PIPE if pipe_stderr else None
if quiet: if quiet: