That would be ideal- but I'm using 2.4 now, and the people using the app
would also have to upgrade to 2.5.
I don't like upgrading unless there's a pressing need.


On 1/30/07, Danny Yoo <[EMAIL PROTECTED]> wrote:

> The author of the cmd line app suggested I temporarily replace
> sys.stdout'with a file descriptor class that can write directly to the
> gui'. The author is now out of communications for a few weeks, so I
> can't elaborate.

It sounds like the subprocess module might be very useful here:

     http://www.python.org/doc/lib/node529.html

The reason is because you can use the PIPE option, which gives you a
file-like object of the other process's stdout.  There's an example of
this in action here:

     http://www.python.org/doc/lib/node536.html

If you have more questions, please feel free to ask.  Best of wishes!

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to