In <[EMAIL PROTECTED]>, Vincent Delporte wrote:

> Anyone knows if those lines are necessary, why, and what their
> alternative is in Python?
> 
> -------
> open STDOUT, '>/dev/null'; 

sys.stdout = open(os.devnull, 'w') 

Ciao,
        Marc 'BlackJack' Rintsch
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to