Unfortunatley that doesn't help. Even when callee is started using the
-u, I get the same behavior.
--
http://mail.python.org/mailman/listinfo/python-list
On 21 Jul 2005 06:14:25 -0700, "Dr. Who" <[EMAIL PROTECTED]> wrote:
>I am using the subprocess module in 2.4. Here's the fragment:
>
>bufcaller.py:
> import sys, subprocess
> proc = subprocess.Popen('python bufcallee.py', bufsize=0, shell=True,
>stdout=subprocess.PIPE)
> for line
I am using the subprocess module in 2.4. Here's the fragment:
bufcaller.py:
import sys, subprocess
proc = subprocess.Popen('python bufcallee.py', bufsize=0, shell=True,
stdout=subprocess.PIPE)
for line in proc.stdout:
sys.stdout.write(line)
bufcallee.py: