According to the python documentation
exception OverflowError
Raised when the result of an arithmetic operation is too large to
be represented. This cannot occur for long integers (which would
rather raise MemoryError than give up) and for most operations with
plain integers, which return a long integer instead. Because of the
lack of standardization of floating point exception handling in C,
most floating point operations also aren’t checked.
Indeed, this error made sense when overflowing integers were not converted to long automatically. Similarly, floats overflow to inf. I don’t really see any situation where the standard interpreter may still raise OverflowError. Is there such a case somewhere ? Just a curiosity.
Come to think of it (I think I saw the first one in a comment which has disappeared, so I’m not sure who to credit):
These are all of the x-to-int-power or int-to-float (or complex works too) type.
And — because it showed up on the right in the related questions! — there’s:
which is of a different kind.