This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Dennis Sweeney
Recipients Dennis Sweeney, docs@python, evolvah
Date 2021-05-07.20:52:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1620420751.94.0.163694202358.issue44071@roundup.psfhosted.org>
In-reply-to
Content
I think the docs are correct. For example:

>>> import subprocess
>>> subprocess.run("ls", check=True, stdout=subprocess.PIPE).stdout
<my files here>
>>> subprocess.check_output("ls")
<my files here>
History
Date User Action Args
2021-05-07 20:52:31Dennis Sweeneysetrecipients: + Dennis Sweeney, docs@python, evolvah
2021-05-07 20:52:31Dennis Sweeneysetmessageid: <1620420751.94.0.163694202358.issue44071@roundup.psfhosted.org>
2021-05-07 20:52:31Dennis Sweeneylinkissue44071 messages
2021-05-07 20:52:31Dennis Sweeneycreate