问题
according to this guide on python descriptors https://docs.python.org/2/howto/descriptor.html
method objects in new style classes are implemented using descriptors in order to avoid special casing them in attribute lookup.
the way I understand this is that there is a method object type that implements __get__ and returns a bound method object when called with an instance and an unbound method object when called with no instance and only a class. the article also states that this logic is implemented in the object.__getattribute__ method. like so:
def __getattribute__(self, key):
"Emulate type_getattro() in Objects/typeobject.c"
v = object.__getattribute__(self, key)
if hasattr(v, '__get__'):
return v.__get__(None, self)
return v
however object.__getattribute__ is itself a method! so how is it bound to an object (without infinite recursion)? if it is special cased in the attribute lookup does that not defeat the purpose of removing the old style special casing?
回答1:
Actually, in CPython the default __getattribute__ implementation is not a Python method, but is instead implemented in C. It can access object slots (entries in the C structure representing Python objects) directly, without bothering to go through the pesky attribute access routine.
Just because your Python code has to do this, doesn't mean the C code has to. :-)
If you do implement a Python __getattribute__ method, just use object.__getattribute__(self, attrname), or better still, super(YourClassName, self).__getattribute__(attrname) to access attributes on self. That way you won't hit recursion either.
In the CPython implementation, the attribute access is actually handled by the tp_getattro slot in the C type object, with a fallback to the tp_getattr slot. That way you can avoid recursing.
To be exhaustive and to fully expose what the C code does, when you use attribute access on an instance, here is the full set of functions called:
Python translates attribute access to a call to the PyObject_GetAttr() C function. The implementation for that function looks up the
tp_getattroortp_getattrslot for your class.The
objecttype has tp_getattr filled with the _PyObject_GenericGetAttrWithDict function. This function is yourobject.__getattribute__method (a special table maps between the name and the slot).This function can access the instance
__dict__object through the tp_dict slot, but for descriptors (including methods), the _PyType_Lookup function is used._PyType_Lookuplooks up attributes on the class (and superclasses). The code uses direct pointers tocl_dict(custom Python classes) andtp_dictto reference class and type dictionaries.If a descriptor is found by
_PyType_Lookupit is returned to_PyObject_GenericGetAttrWithDictand it calls thetp_descr_getfunction on that object (the__get__hook).
When you access an attribute on the class itself, instead of _PyObject_GenericGetAttrWithDict, the type->tp_getattro slot is instead serviced by the type_getattro() function, which takes meta classes into account too. This version calls __get__ too, but leaves the instance parameter set to None.
Nowhere does this code have to recursively call __getattribute__ to access the __dict__ attribute, as it can simply reach into the C structures directly.
来源:https://stackoverflow.com/questions/24863787/python-the-getattribute-method-and-descriptors