Sadly, the group is tied to Python 2.3 for now.

Actually, I got around this problem by using an intermediate process that
happens to handle output on its own (bsub).

On 1/30/07, Chris Lambacher <[EMAIL PROTECTED]> wrote:

The subprocess module is probably a good starting point:
http://docs.python.org/dev/lib/module-subprocess.html

It will allow you greater control over what happens with the output of a
process that you start.  Specifically look at the the stdout and stderr
arguments to Popen.  You can provide these with an open file descriptor or
a
file object and it will dump the output into there.

-Chris
>
> _jason
>
> --
> http://mail.python.org/mailman/listinfo/python-list

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

Reply via email to