On Nov 20, 1:18 pm, Johannes Bauer <[EMAIL PROTECTED]> wrote:
> Hello group,
>
> I'm porting some code of mine to Python 3. One class has the __cmp__
> operator overloaded, but comparison doesn't seem to work anymore with that:
>
> Traceback (most recent call last):
>   File "./parse", line 25, in <module>
>     print(x < y)
> TypeError: unorderable types: IP() < IP()
>
> Was there some kind of semantic change?

Overload __lt__ method.

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

Reply via email to