Cesar D. Rodas wrote:

> I am newbie in Python, but I like it very much.
> 
> Right now I am having a problem, I am working with mod_python in apache. 
> What I needing is a stdout buffering, that means that everything that I 
> send to stdout keep it in a variable, then flush it and clear.

plug in a StringIO instance on sys.stdout, or use (or adapt) a library 
designed for this purpose:

    http://www.mnot.net/cgi_buffer/

</F>

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

Reply via email to