Thanks for letting me know that the list takes no attachments.
Please find my modified code at the end of this email. I found one problem. I
was reading streams with "proc.stderr.readline()", which never returned,
because only ">>> " was sent to stderr repeatedly, "\n" only going to stdout.
Now
On 3/18/2019 9:10 AM, finnkochin...@keemail.me wrote:
I try to start a separate python subprocess using the attached code. This
example should catch all stdout and stderr output from the launched subprocess
and send commands to its stdin.
Subprocess is not intended for interaction. My attemp
On 2019-03-18, wrote:
> I try to start a separate python subprocess using the attached
> code. This example should catch all stdout and stderr output from
> the launched subprocess and send commands to its stdin. The problem
> is that the prompt ">>>" asking for then next input is neither sent
On Tue, Mar 19, 2019 at 2:50 AM wrote:
>
> Hello,
> I try to start a separate python subprocess using the attached code. This
> example should catch all stdout and stderr output from the launched
> subprocess and send commands to its stdin.
> The problem is that the prompt ">>>" asking for then
Hello,
I try to start a separate python subprocess using the attached code. This
example should catch all stdout and stderr output from the launched subprocess
and send commands to its stdin.
The problem is that the prompt ">>>" asking for then next input is neither sent
to stdout nor to stderr.