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.
Created on 2005年08月15日 19:15 by ianbicking, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| subprocess_communicate_alternative.py | ianbicking, 2005年08月15日 19:15 | |||
| Messages (8) | |||
|---|---|---|---|
| msg54590 - (view) | Author: Ian Bicking (ianbicking) * | Date: 2005年08月15日 19:15 | |
Right now you can use subprocess.Popen.communicate() to make communication with subprocesses much easier and less likely to block than communicating directly with .stdin, .stdout, etc. However, that requires completely buffering the input and output. The functionality of communicate() (which is somewhat complex because of platform issues) could be made more general fairly easily. The current functionality of communicate could then be implemented in terms of that new method. I attached a function I'm using which does that for the posix systems (basically turning Popen's posix communicate into a function with some modifications). Replace "proc" with "self" (and give the function a better name) and you'd have a method. If patch 1175984 was accepted, then this wouldn't be that much of an issue: http://sourceforge.net/tracker/index.php?func=detail&aid=1175984&group_id=5470&atid=305470 |
|||
| msg54591 - (view) | Author: Josiah Carlson (josiahcarlson) * (Python triager) | Date: 2005年08月22日 19:02 | |
Logged In: YES user_id=341410 Would an asynchronous subprocess (which you would poll manually) be better/sufficient? http://python.org/sf/1191964 |
|||
| msg54592 - (view) | Author: Josiah Carlson (josiahcarlson) * (Python triager) | Date: 2005年08月22日 19:03 | |
Logged In: YES user_id=341410 Also, what you post is not a 'bug', it is a 'feature request'. |
|||
| msg54593 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2005年08月22日 19:38 | |
Logged In: YES user_id=1188172 Reclassifying as RFE. Assigning to Peter. |
|||
| msg161338 - (view) | Author: Ross Lagerwall (rosslagerwall) (Python committer) | Date: 2012年05月22日 08:45 | |
Closed issue14872 as a duplicate of this. |
|||
| msg222926 - (view) | Author: Mark Lawrence (BreamoreBoy) * | Date: 2014年07月13日 13:58 | |
Please note the work being performed on #1191964 which was first referenced in msg54591. |
|||
| msg245159 - (view) | Author: Martin Panter (martin.panter) * (Python committer) | Date: 2015年06月11日 08:18 | |
The non-blocking read and write features proposed in Issue 1191964 wouldn’t be sufficient. Perhaps they might be useful for implementing this feature on Windows though; I’m not sure. And a non-blocking write on Posix may be slightly more efficient as well, removing the limitation of copying in chunks of PIPE_BUF bytes. Ian’s original patch posted here proposes a version of communicate() which accepts a file reader for the subprocess’s input, and file writers for the subprocess’s outputs. Another option could be something like my SubprocessWriter class <https://github.com/vadmium/pacman-tools/blob/9ffdd88/makeaur#L179>. It provides a file writer interface for the caller to write to the subprocess’s input, while copying data from the subprocess’s output behind the scenes. I used it to stream a tar file, as it is written by the "tarfile" module, into a GPG subprocess to create a digital signature, while writing the output of GPG into a BytesIO buffer. Using Unix command pipeline pseudocode, it is used a bit like this: tarfile.open(mode="w|") | Popen("gpg") | BytesIO() |
|||
| msg379076 - (view) | Author: Gregory P. Smith (gregory.p.smith) * (Python committer) | Date: 2020年10月20日 01:58 | |
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 |
| 2022年04月11日 14:56:12 | admin | set | github: 42281 |
| 2020年10月20日 01:58:46 | gregory.p.smith | set | status: open -> closed assignee: gregory.p.smith nosy: + gregory.p.smith messages: + msg379076 resolution: wont fix stage: test needed -> resolved |
| 2019年05月02日 04:04:48 | josiahcarlson | set | nosy:
- josiahcarlson |
| 2019年03月15日 21:59:48 | BreamoreBoy | set | nosy:
- BreamoreBoy |
| 2016年09月25日 13:19:04 | christian.heimes | unlink | issue1175984 dependencies |
| 2015年06月11日 08:18:50 | martin.panter | set | nosy:
+ martin.panter messages: + msg245159 |
| 2014年07月13日 13:58:56 | BreamoreBoy | set | nosy:
+ BreamoreBoy messages: + msg222926 versions: + Python 3.5, - Python 3.2 |
| 2012年05月22日 21:04:31 | cvrebert | set | nosy:
+ cvrebert |
| 2012年05月22日 09:08:14 | giampaolo.rodola | set | nosy:
+ giampaolo.rodola |
| 2012年05月22日 08:45:43 | rosslagerwall | set | assignee: astrand -> (no value) messages: + msg161338 nosy: + rosslagerwall |
| 2012年05月22日 08:45:11 | rosslagerwall | link | issue14872 superseder |
| 2010年08月21日 12:51:31 | BreamoreBoy | set | versions: - Python 2.7 |
| 2009年05月12日 17:48:05 | ajaksu2 | set | keywords:
+ patch stage: test needed versions: + Python 2.7, Python 3.2, - Python 2.6 |
| 2009年02月15日 22:15:42 | ajaksu2 | link | issue1175984 dependencies |
| 2008年01月05日 19:32:38 | christian.heimes | set | versions: + Python 2.6 |
| 2005年08月15日 19:15:12 | ianbicking | create | |