I can't understand what does the below precedence means in context of __getattribute__() special method and Descriptors
I read this under the topic("Precedence") - under topic ("Desriptors") from book Core Python Programming 3 times, still can't get through it.. Can any one explain what are these precedence, and where they are used for??
- Class attributes
- Data descriptors
- Instance attributes
- Non-data descriptors
- Defaulting to getattr()
I also read the python documentation, where I found the below statement: -
For instance bindings, the precedence of descriptor invocation depends on the which descriptor methods are defined. A descriptor can define any combination of get(), set() and delete(). If it does not define get(), then accessing the attribute will return the descriptor object itself unless there is a value in the object’s instance dictionary. If the descriptor defines set() and/or delete(), it is a data descriptor; if it defines neither, it is a non-data descriptor. Normally, data descriptors define both get() and set(), while non-data descriptors have just the get() method.
Data descriptors with
**__set__()**and**__get__()**defined always override a redefinition in an instance dictionary. In contrast, non-data descriptors can be overridden by instances.Python methods (including staticmethod() and classmethod()) are implemented as non-data descriptors. Accordingly, instances can redefine and override methods. This allows individual instances to acquire behaviors that differ from other instances of the same class.
Can anyone give a small example to explain what the first paragraph is all about?
Also what does it mean by saying - override a redefinition in an instance dictionary??