At Sunday 24/9/2006 18:55, Robert Kern wrote:

Anyways, against my better judgement, I will tell you that you can customize the
output by replacing sys.displayhook with your own function:

   http://www.python.org/doc/current/lib/module-sys.html

 >>> import sys
 >>> def f(obj):
        print '    ' + repr(obj)
 >>> sys.displayhook = f

Sometimes I enable a similar approach on my sitecustomize.py, using the pprint module. But I don't *always* like the output format.


Gabriel Genellina
Softlab SRL

        
        
                
__________________________________________________
Preguntá. Respondé. Descubrí.
Todo lo que querías saber, y lo que ni imaginabas,
está en Yahoo! Respuestas (Beta).
¡Probalo ya! http://www.yahoo.com.ar/respuestas

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

Reply via email to