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 2011年12月11日 05:05 by ncoghlan, last changed 2022年04月11日 14:57 by admin.
| Messages (3) | |||
|---|---|---|---|
| msg149210 - (view) | Author: Alyssa Coghlan (ncoghlan) * (Python committer) | Date: 2011年12月11日 05:05 | |
subprocess.check_output() is nice, but doesn't help if you want to process the piped data line-by-line. Currently, that means you have to do the full Popen dance if you want access to each line of output as it becomes available. This RFE is for a subprocess.iter_output() module level helper that: 1. Starts the subprocess 2. Yield the individual lines of output as they are produced by the subprocess 3. Cleans up (including checking for errors) at the end This biggest challenge I have noticed so far in exploring this is how to handle timeouts on Windows - on Unix, select.select() can do the job, but that won't handle pipes in the Windows case. |
|||
| msg149215 - (view) | Author: Alyssa Coghlan (ncoghlan) * (Python committer) | Date: 2011年12月11日 07:39 | |
You can see a version of this here: https://bitbucket.org/ncoghlan/shell_command/src/2b1988b072aa/shell_command.py#cl-157 |
|||
| msg152794 - (view) | Author: Giampaolo Rodola' (giampaolo.rodola) * (Python committer) | Date: 2012年02月06日 22:32 | |
> This biggest challenge I have noticed so far in exploring > this is how to handle timeouts on Windows I haven't actually looked into it but this somewhat recalls: http://bugs.python.org/issue1191964 Since issue1191964 is supposed to provide async subprocess I/O I presume Windows timeouts are also involved somewhere in the provided patch/recipe. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:24 | admin | set | github: 57787 |
| 2012年06月12日 12:00:10 | ncoghlan | set | versions: + Python 3.4, - Python 3.3 |
| 2012年02月06日 22:32:52 | giampaolo.rodola | set | nosy:
+ giampaolo.rodola messages: + msg152794 |
| 2011年12月11日 07:39:03 | ncoghlan | set | messages: + msg149215 |
| 2011年12月11日 05:09:38 | rosslagerwall | set | nosy:
+ rosslagerwall |
| 2011年12月11日 05:05:54 | ncoghlan | create | |