On Jul 30, 5:24 pm, Dhanesh <dhanesh...@gmail.com> wrote: > > how can I we have a non blocking read ?
See http://docs.python.org/library/popen2.html#flow-control-issues Note well: In the non-blocking world, you have to use select() or poll () to get your job done. You may want to look at "communicate" (http://docs.python.org/library/ subprocess.html#popen-objects) which may be what you need. -- http://mail.python.org/mailman/listinfo/python-list