Amaury Forgeot d'Arc <amaur...@gmail.com> added the comment:

A simpler change would to replace:
    rv = self.obj.__lt__(other.obj)
with
    rv = type(self.obj).__lt__(self.obj, other.obj)

----------
nosy: +amaury.forgeotdarc

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue10017>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to