> fin, fout = os.popen4(arg)
> 
> this is executed asyncronously? And how can I intercept a fout.write()
> event?

You don't intercept anything, you read from the child process stdin, which
from your POV is a readable stream.

Diez
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to