Hi all,<br><br>ipython is doing some magic with the output of 'type(a)' (using 0.11.rc1 in EPD):<br><br>In [1]: a = 1<br><br>In [2]: type(a)<br>Out[2]: int<br><br>In [3]: str(type(a))<br>Out[3]: "<type 'int'>"<br>

<br>In [4]: repr(type(a))<br>Out[4]: "<type 'int'>"<br><br>The output in line 2 is nicer, but it makes it appear that the builtin 'type' behaves in a way that it does not.  My attempts (possibly too brief) to find documentation or discussion of this feature have not been fruitful.  Can anyone point me to the relevant docs, or mailing list discussions?  Thanks.<br>

<br>Warren<br><br>