Howto Descriptor
Howto Descriptor
Release 3.13.0
Contents
1 Primer 3
1.1 Simple example: A descriptor that returns a constant . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.2 Dynamic lookups . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.3 Managed attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
1.4 Customized names . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
1.5 Closing thoughts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
3 Technical Tutorial 9
3.1 Abstract . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
3.2 Definition and introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
3.3 Descriptor protocol . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
3.4 Overview of descriptor invocation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
3.5 Invocation from an instance . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
3.6 Invocation from a class . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
3.7 Invocation from super . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
3.8 Summary of invocation logic . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
3.9 Automatic name notification . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
3.10 ORM example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
Author
Raymond Hettinger
Contact
<python at rcn dot com>
1
Contents
• Descriptor Guide
– Primer
∗ Simple example: A descriptor that returns a constant
∗ Dynamic lookups
∗ Managed attributes
∗ Customized names
∗ Closing thoughts
– Complete Practical Example
∗ Validator class
∗ Custom validators
∗ Practical application
– Technical Tutorial
∗ Abstract
∗ Definition and introduction
∗ Descriptor protocol
∗ Overview of descriptor invocation
∗ Invocation from an instance
∗ Invocation from a class
∗ Invocation from super
∗ Summary of invocation logic
∗ Automatic name notification
∗ ORM example
– Pure Python Equivalents
∗ Properties
∗ Functions and methods
∗ Kinds of methods
∗ Static methods
∗ Class methods
∗ Member objects and __slots__
2
4) The last section has pure Python equivalents for built-in descriptors that are written in C. Read this if you’re
curious about how functions turn into bound methods or about the implementation of common tools like
classmethod(), staticmethod(), property(), and __slots__.
1 Primer
In this primer, we start with the most basic possible example and then we’ll add new capabilities one by one.
class Ten:
def __get__(self, obj, objtype=None):
return 10
class A:
x = 5 # Regular class attribute
y = Ten() # Descriptor instance
An interactive session shows the difference between normal attribute lookup and descriptor lookup:
In the a.x attribute lookup, the dot operator finds 'x': 5 in the class dictionary. In the a.y lookup, the dot operator
finds a descriptor instance, recognized by its __get__ method. Calling that method returns 10.
Note that the value 10 is not stored in either the class dictionary or the instance dictionary. Instead, the value 10 is
computed on demand.
This example shows how a simple descriptor works, but it isn’t very useful. For retrieving constants, normal attribute
lookup would be better.
In the next section, we’ll create something more useful, a dynamic lookup.
import os
class DirectorySize:
class Directory:
An interactive session shows that the lookup is dynamic — it computes different, updated answers each time:
3
>>> s = Directory('songs')
>>> g = Directory('games')
>>> s.size # The songs directory has twenty files
20
>>> g.size # The games directory has three files
3
>>> os.remove('games/chess') # Delete a game
>>> g.size # File count is automatically updated
2
Besides showing how descriptors can run computations, this example also reveals the purpose of the parameters to
__get__(). The self parameter is size, an instance of DirectorySize. The obj parameter is either g or s, an instance of
Directory. It is the obj parameter that lets the __get__() method learn the target directory. The objtype parameter
is the class Directory.
In the following example, age is the public attribute and _age is the private attribute. When the public attribute is
accessed, the descriptor logs the lookup or update:
import logging
logging.basicConfig(level=logging.INFO)
class LoggedAgeAccess:
class Person:
def birthday(self):
self.age += 1 # Calls both __get__() and __set__()
An interactive session shows that all access to the managed attribute age is logged, but that the regular attribute name
is not logged:
>>> mary = Person('Mary M', 30) # The initial age update is logged
INFO:root:Updating 'age' to 30
>>> dave = Person('David D', 40)
INFO:root:Updating 'age' to 40
4
(continued from previous page)
>>> vars(mary) # The actual data is in a private attribute
{'name': 'Mary M', '_age': 30}
>>> vars(dave)
{'name': 'David D', '_age': 40}
One major issue with this example is that the private name _age is hardwired in the LoggedAgeAccess class. That
means that each instance can only have one logged attribute and that its name is unchangeable. In the next example,
we’ll fix that problem.
import logging
logging.basicConfig(level=logging.INFO)
class LoggedAccess:
class Person:
5
(continued from previous page)
def birthday(self):
self.age += 1
An interactive session shows that the Person class has called __set_name__() so that the field names would be
recorded. Here we call vars() to look up the descriptor without triggering it:
>>> vars(vars(Person)['name'])
{'public_name': 'name', 'private_name': '_name'}
>>> vars(vars(Person)['age'])
{'public_name': 'age', 'private_name': '_age'}
The new class now logs access to both name and age:
>>> vars(pete)
{'_name': 'Peter P', '_age': 10}
>>> vars(kate)
{'_name': 'Catherine C', '_age': 20}
6
2.1 Validator class
A validator is a descriptor for managed attribute access. Prior to storing any data, it verifies that the new value meets
various type and range restrictions. If those restrictions aren’t met, it raises an exception to prevent data corruption
at its source.
This Validator class is both an abstract base class and a managed attribute descriptor:
class Validator(ABC):
@abstractmethod
def validate(self, value):
pass
Custom validators need to inherit from Validator and must supply a validate() method to test various restric-
tions as needed.
class OneOf(Validator):
class Number(Validator):
7
(continued from previous page)
raise TypeError(f'Expected {value!r} to be an int or float')
if self.minvalue is not None and value < self.minvalue:
raise ValueError(
f'Expected {value!r} to be at least {self.minvalue!r}'
)
if self.maxvalue is not None and value > self.maxvalue:
raise ValueError(
f'Expected {value!r} to be no more than {self.maxvalue!r}'
)
class String(Validator):
class Component:
8
(continued from previous page)
Traceback (most recent call last):
...
ValueError: Expected 'metle' to be one of {'metal', 'plastic', 'wood'}
3 Technical Tutorial
What follows is a more technical tutorial for the mechanics and details of how descriptors work.
3.1 Abstract
Defines descriptors, summarizes the protocol, and shows how descriptors are called. Provides an example showing
how object relational mappings work.
Learning about descriptors not only provides access to a larger toolset, it creates a deeper understanding of how
Python works.
That is all there is to it. Define any of these methods and an object is considered a descriptor and can override default
behavior upon being looked up as an attribute.
If an object defines __set__() or __delete__(), it is considered a data descriptor. Descriptors that only define
__get__() are called non-data descriptors (they are often used for methods but other uses are possible).
Data and non-data descriptors differ in how overrides are calculated with respect to entries in an instance’s dictionary.
If an instance’s dictionary has an entry with the same name as a data descriptor, the data descriptor takes precedence.
9
If an instance’s dictionary has an entry with the same name as a non-data descriptor, the dictionary entry takes
precedence.
To make a read-only data descriptor, define both __get__() and __set__() with the __set__() raising an
AttributeError when called. Defining the __set__() method with an exception raising placeholder is enough
to make it a data descriptor.
Note, there is no __getattr__() hook in the __getattribute__() code. That is why calling
__getattribute__() directly or with super().__getattribute__ will bypass __getattr__() entirely.
Instead, it is the dot operator and the getattr() function that are responsible for invoking __getattr__() when-
ever __getattribute__() raises an AttributeError. Their logic is encapsulated in a helper function:
10
(continued from previous page)
return obj.__getattribute__(name)
except AttributeError:
if not hasattr(type(obj), '__getattr__'):
raise
return type(obj).__getattr__(obj, name) # __getattr__
11
3.10 ORM example
The following code is a simplified skeleton showing how data descriptors could be used to implement an object
relational mapping.
The essential idea is that the data is stored in an external database. The Python instances only hold keys to the
database’s tables. Descriptors take care of lookups or updates:
class Field:
We can use the Field class to define models that describe the schema for each table in a database:
class Movie:
table = 'Movies' # Table name
key = 'title' # Primary key
director = Field()
year = Field()
class Song:
table = 'Music'
key = 'title'
artist = Field()
year = Field()
genre = Field()
An interactive session shows how data is retrieved from the database and how it can be updated:
12
(continued from previous page)
>>> Movie('Star Wars').director
'J.J. Abrams'
4.1 Properties
Calling property() is a succinct way of building a data descriptor that triggers a function call upon access to an
attribute. Its signature is:
property(fget=None, fset=None, fdel=None, doc=None) -> property
class C:
def getx(self): return self.__x
def setx(self, value): self.__x = value
def delx(self): del self.__x
x = property(getx, setx, delx, "I'm the 'x' property.")
To see how property() is implemented in terms of the descriptor protocol, here is a pure Python equivalent that
implements most of the core functionality:
class Property:
"Emulate PyProperty_Type() in Objects/descrobject.c"
13
(continued from previous page)
self.fdel(obj)
The property() builtin helps whenever a user interface has granted attribute access and then subsequent changes
require the intervention of a method.
For instance, a spreadsheet class may grant access to a cell value through Cell('b10').value. Subsequent im-
provements to the program require the cell to be recalculated on every access; however, the programmer does not
want to affect existing client code accessing the attribute directly. The solution is to wrap access to the value attribute
in a property data descriptor:
class Cell:
...
@property
def value(self):
"Recalculate the cell before returning value"
self.recalc()
return self._value
Either the built-in property() or our Property() equivalent would work in this example.
class MethodType:
"Emulate PyMethod_Type in Objects/classobject.c"
14
(continued from previous page)
To support automatic creation of methods, functions include the __get__() method for binding methods during
attribute access. This means that functions are non-data descriptors that return bound methods during dotted lookup
from an instance. Here’s how it works:
class Function:
...
Running the following class in the interpreter shows how the function descriptor works in practice:
class D:
def f(self):
return self
class D2:
pass
>>> D.f.__qualname__
'D.f'
Accessing the function through the class dictionary does not invoke __get__(). Instead, it just returns the underlying
function object:
>>> D.__dict__['f']
<function D.f at 0x00C45070>
Dotted access from a class calls __get__() which just returns the underlying function unchanged:
>>> D.f
<function D.f at 0x00C45070>
The interesting behavior occurs during dotted access from an instance. The dotted lookup calls __get__() which
returns a bound method object:
>>> d = D()
>>> d.f
<bound method D.f of <__main__.D object at 0x00B18C90>>
Internally, the bound method stores the underlying function and the bound instance:
>>> d.f.__func__
<function D.f at 0x00C45070>
(continues on next page)
15
(continued from previous page)
>>> d.f.__self__
<__main__.D object at 0x00B18C90>
If you have ever wondered where self comes from in regular methods or where cls comes from in class methods, this
is it!
class E:
@staticmethod
def f(x):
return x * 10
>>> E.f(3)
30
>>> E().f(3)
30
Using the non-data descriptor protocol, a pure Python version of staticmethod() would look like this:
import functools
class StaticMethod:
"Emulate PyStaticMethod_Type() in Objects/funcobject.c"
16
(continued from previous page)
self.f = f
functools.update_wrapper(self, f)
The functools.update_wrapper() call adds a __wrapped__ attribute that refers to the underlying function.
Also it carries forward the attributes necessary to make the wrapper look like the wrapped function: __name__,
__qualname__, __doc__, and __annotations__.
class F:
@classmethod
def f(cls, x):
return cls.__name__, x
>>> F.f(3)
('F', 3)
>>> F().f(3)
('F', 3)
This behavior is useful whenever the method only needs to have a class reference and does not rely on data stored in
a specific instance. One use for class methods is to create alternate class constructors. For example, the classmethod
dict.fromkeys() creates a new dictionary from a list of keys. The pure Python equivalent is:
class Dict(dict):
@classmethod
def fromkeys(cls, iterable, value=None):
"Emulate dict_fromkeys() in Objects/dictobject.c"
d = cls()
for key in iterable:
d[key] = value
return d
>>> d = Dict.fromkeys('abracadabra')
>>> type(d) is Dict
True
>>> d
{'a': None, 'b': None, 'r': None, 'c': None, 'd': None}
Using the non-data descriptor protocol, a pure Python version of classmethod() would look like this:
import functools
class ClassMethod:
"Emulate PyClassMethod_Type() in Objects/funcobject.c"
17
(continued from previous page)
self.f = f
functools.update_wrapper(self, f)
The functools.update_wrapper() call in ClassMethod adds a __wrapped__ attribute that refers to the
underlying function. Also it carries forward the attributes necessary to make the wrapper look like the wrapped
function: __name__, __qualname__, __doc__, and __annotations__.
class Vehicle:
__slots__ = ('id_number', 'make', 'model')
2. Helps create immutable objects where descriptors manage access to private attributes stored in __slots__:
class Immutable:
@property
def name(self): # Read-only descriptor
return self._name
18
(continued from previous page)
...
AttributeError: 'Immutable' object has no attribute 'location'
3. Saves memory. On a 64-bit Linux build, an instance with two attributes takes 48 bytes with __slots__ and 152
bytes without. This flyweight design pattern likely only matters when a large number of instances are going to be
created.
4. Improves speed. Reading instance variables is 35% faster with __slots__ (as measured with Python 3.10 on an
Apple M1 processor).
5. Blocks tools like functools.cached_property() which require an instance dictionary to function correctly:
class CP:
__slots__ = () # Eliminates the instance dict
>>> CP().pi
Traceback (most recent call last):
...
TypeError: No '__dict__' attribute on 'CP' instance to cache 'pi' property.
It is not possible to create an exact drop-in pure Python version of __slots__ because it requires direct access to
C structures and control over object memory allocation. However, we can build a mostly faithful simulation where
the actual C structure for slots is emulated by a private _slotvalues list. Reads and writes to that private structure
are managed by member descriptors:
null = object()
class Member:
19
(continued from previous page)
def __delete__(self, obj):
'Emulate member_delete() in Objects/descrobject.c'
value = obj._slotvalues[self.offset]
if value is null:
raise AttributeError(self.name)
obj._slotvalues[self.offset] = null
def __repr__(self):
'Emulate member_repr() in Objects/descrobject.c'
return f'<Member {self.name!r} of {self.clsname!r}>'
The type.__new__() method takes care of adding member objects to class variables:
class Type(type):
'Simulate how the type metaclass adds member objects for slots'
The object.__new__() method takes care of creating instances that have slots instead of an instance dictionary.
Here is a rough simulation in pure Python:
class Object:
'Simulate how object.__new__() allocates memory for __slots__'
To use the simulation in a real class, just inherit from Object and set the metaclass to Type:
20
class H(Object, metaclass=Type):
'Instance variables stored in slots'
At this point, the metaclass has loaded member objects for x and y:
When instances are created, they have a slot_values list where the attributes are stored:
>>> h.xz
Traceback (most recent call last):
...
AttributeError: 'H' object has no attribute 'xz'
21