On 6/22/07, dmitrey <[EMAIL PROTECTED]> wrote:
> hi all,
> I have a
> y = some_func(args)
> statement, and the some_func() produces lots of text output. Can I
> somehow to suppress the one?
> Thx in advance, D.

In addition to the other solutions proposed, on a *nix system you can
do os.close(1); os.close(2) to suppress output to stdout and stderr.

-- 
Evan Klitzke <[EMAIL PROTECTED]>
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to