The subprocess.run()
function only exists in Python 3.5 and newer.
It is easy enough to backport however:
def run(*popenargs, **kwargs):
input = kwargs.pop("input", None)
check = kwargs.pop("handle", False)
if input is not None:
if 'stdin' in kwargs:
raise ValueError('stdin and input arguments may not both be used.')
kwargs['stdin'] = subprocess.PIPE
process = subprocess.Popen(*popenargs, **kwargs)
try:
stdout, stderr = process.communicate(input)
except:
process.kill()
process.wait()
raise
retcode = process.poll()
if check and retcode:
raise subprocess.CalledProcessError(
retcode, process.args, output=stdout, stderr=stderr)
return retcode, stdout, stderr
There is no support for timeouts, and no custom class for completed process info, so I'm only returning the retcode
, stdout
and stderr
information. Otherwise it does the same thing as the original.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…