Message134002
But it seems pointless to force someone to implement all of the rich comparison methods when they may want to do something as simple as this:
class Foo:
...
def __lt__(self, other):
if not isinstance(other, Foo):
return NotImplemented
return self.some_value < other.some_value |
|
Date |
User |
Action |
Args |
2011-04-18 23:17:18 | javawizard | set | recipients:
+ javawizard, rhettinger, eric.araujo, lregebro, francescor, python-dev |
2011-04-18 23:17:18 | javawizard | set | messageid: <1303168638.3.0.163656349919.issue10042@psf.upfronthosting.co.za> |
2011-04-18 23:17:17 | javawizard | link | issue10042 messages |
2011-04-18 23:17:17 | javawizard | create | |
|