[IPython-dev] Fix for bug #2122 not in 0.13.2

Walter Dörwald walter at livinglogic.de
Thu Apr 11 10:11:05 EDT 2013


It seems that the fix for bug #2122 wasn't include in 0.13.2.

Here's the commit:

 
https://github.com/ipython/ipython/commit/8654deefccde5dc6b72b0fb210704ffc7a6630d5#IPython/lib/pretty.py

However when I download

    https://pypi.python.org/packages/source/i/ipython/ipython-0.13.2.tar.gz

IPython/lib/pretty.py still contains:

    if '_repr_pretty_' in obj_class.__dict__:
       meth = obj_class._repr_pretty_

in RepresentationPrinter.pretty() instead of:

    if '_repr_pretty_' in cls.__dict__:
       meth = cls._repr_pretty_

Servus,
    Walter



More information about the IPython-dev mailing list