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 gregory.p.smith
Recipients astrand, cvrebert, georg.brandl, giampaolo.rodola, gregory.p.smith, ianbicking, martin.panter, rosslagerwall
Date 2020-10-20.01:58:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1603159126.59.0.71278277783.issue1260171@roundup.psfhosted.org>
In-reply-to
Content
since the time this was filed, subprocess has evolved a lot and third party options for child process have appeared as well as modern things like:

https://docs.python.org/3/library/asyncio-subprocess.html (stdlib)

https://trio.readthedocs.io/en/stable/reference-io.html?highlight=subprocess#options-for-starting-subprocesses (trio, easier async framework to use than asyncio)

plumbing stdin/stdout/stderr data to python file-like objects from the stdlib subprocess APIs themselves is better left to third party solutions building on top of the subprocess module today.
History
Date User Action Args
2020-10-20 01:58:46gregory.p.smithsetrecipients: + gregory.p.smith, georg.brandl, ianbicking, astrand, giampaolo.rodola, cvrebert, rosslagerwall, martin.panter
2020-10-20 01:58:46gregory.p.smithsetmessageid: <1603159126.59.0.71278277783.issue1260171@roundup.psfhosted.org>
2020-10-20 01:58:46gregory.p.smithlinkissue1260171 messages
2020-10-20 01:58:46gregory.p.smithcreate