There are a few you missed that could be added:
__call__(...) → self(...)
__getattr__(attr) → getattr(self, attr)
__setattr__(attr, value) → setattr(self, attr, value)
__detattr__(attr) → detattr(self, attr)
__index__() → operator.index(self)
__length_hint__() → operator.length_hint(self)
__ceil__() → math.ceil(self)
__floor__() → math.floor(self)
__trunc__() → math.trunc(self)