method: magic.View.__getattr__

*Not documented*
    def __getattr__(self, attr):

origin: magic.View

where:

function source:

def __getattr__(self, attr):
    # attributes not found in the normal hierarchy rooted on View
    # are looked up in the object's real class
    return getattr(self.__obj__, attr)