Mostly curious.
I've noticed (at least in py 2.6 and 2.7) that a float
has all the familiar rich comparison functions: __lt__()
, __gt__
, __eq__
, etc.
>>> (5.0).__gt__(4.5)
True
but an int
does not
>>> (5).__gt__(4)
Traceback (most recent call last):
File "<input>", line 1, in <module>
AttributeError: 'int' object has no attribute '__gt__'
Which is odd to me, because the operator itself works fine
>>> 5 > 4
True
Even strings support the comparison functions
>>> "hat".__gt__("ace")
True
but all the int
has is __cmp__()
Seems strange to me, and so I was wondering why this came to be.
Just tested and it works as expected in python 3, so I am assuming some legacy reasons. Still would like to hear a proper explanation though ;)
If we look at the PEP 207 for Rich Comparisions there is this interesting sentence right at the end:
So it seems that in 2.x there is an optimisation for integer comparison. If we take a look at the source code we can find this:
So it seems that in 2.x there was an existing performance optimisation - by allowing the C code to compare integers directly - which would not have been preserved if the rich comparison operators had been implemented.
Now in Python 3
__cmp__
is no longer supported so the rich comparison operators must there. Now this does not cause a performance hit as far as I can tell. For example, compare:to:
So it seems that similar optimisations are there but my guess is the judgement call was that putting them all in the 2.x branch would have been too great a change when backwards compatibility was a consideration.
In 2.x if you want something like the rich comparison methods you can get at them via the
operator
module: