IDLE has an output format like this:
>>> object
<type 'object'>
>>> type
<type 'type'>
>>> object.__class__
<type 'type'>
>>> object.__bases__
How can I customize it to become like that:
>>> object
<type 'object'>
>>> type
<type 'type'>
>>> object.__class__
<type 'type'>
>>> object.__bases__
or that:
>>> object
: <type 'object'>
>>> type
: <type 'type'>
>>> object.__class__
: <type 'type'>
>>> object.__bases__
(preferably without modifying code)
.
--
http://lazaridis.com
--
http://mail.python.org/mailman/listinfo/python-list