Qual é a diferença entre o tipo .__ getattribute__ e o objeto .__ getattribute__?

Dado:

In [37]: class A:
   ....:     f = 1
   ....:

In [38]: class B(A):
   ....:     pass
   ....:

In [39]: getattr(B, 'f')
Out[39]: 1

Ok, isso chama super ou rasteja o mro?

In [40]: getattr(A, 'f')
Out[40]: 1

Isso é esperado.

In [41]: object.__getattribute__(A, 'f')
Out[41]: 1

In [42]: object.__getattribute__(B, 'f')
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-42-de76df798d1d> in <module>()
----> 1 object.__getattribute__(B, 'f')

AttributeError: 'type' object has no attribute 'f'

O que o getattribute não está fazendo o que o getattr faz?

In [43]: type.__getattribute__(B, 'f')
Out[43]: 1

O que?!type.__getattribute__ chama super, masobjectversão não?

In [44]: type.__getattribute__(A, 'f')
Out[44]: 1

questionAnswers(1)

yourAnswerToTheQuestion