diff -r 62723172412c Doc/reference/datamodel.rst --- a/Doc/reference/datamodel.rst Sat Apr 11 00:31:01 2015 +0200 +++ b/Doc/reference/datamodel.rst Fri Apr 10 22:07:17 2015 -0400 @@ -2226,9 +2226,9 @@ :meth:`__getattribute__` method even of the object's metaclass:: >>> class Meta(type): - ... def __getattribute__(*args): - ... print("Metaclass getattribute invoked") - ... return type.__getattribute__(*args) + ... def __getattribute__(*args): + ... print("Metaclass getattribute invoked") + ... return type.__getattribute__(*args) ... >>> class C(object, metaclass=Meta): ... def __len__(self):