Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[gen] subprocess.run result pipes are not files
`subprocess.run` returns [CompletedProcess][1]. When used in conjunction with `subprocess.PIPE` for `stderr` or `stdout` it also has a corresponding string or bytes parameter. They are not file-like objects as in the case of `subprocess.Popen` which supports streaming pipes. [1] https://docs.python.org/3/library/subprocess.html#subprocess.CompletedProcess.stderr
- Loading branch information