summaryrefslogtreecommitdiffstats
path: root/Doc/reference/datamodel.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-08-23 21:42:54 (GMT)
committerGeorg Brandl <georg@python.org>2007-08-23 21:42:54 (GMT)
commit37614227499dcf270a02d2c87e4e8e955ac5cc3b (patch)
tree88c6607dc56f75d1dd03469c859475371708f28f /Doc/reference/datamodel.rst
parent604c121eee4a3faef0c242342bc6b73cae46fd28 (diff)
downloadcpython-37614227499dcf270a02d2c87e4e8e955ac5cc3b.zip
cpython-37614227499dcf270a02d2c87e4e8e955ac5cc3b.tar.gz
cpython-37614227499dcf270a02d2c87e4e8e955ac5cc3b.tar.bz2
Bug #1758696: more info about descriptors.
Diffstat (limited to 'Doc/reference/datamodel.rst')
-rw-r--r--Doc/reference/datamodel.rst13
1 files changed, 10 insertions, 3 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index 030d1d9..18ebe76 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -1546,11 +1546,11 @@ Super Binding
``A.__dict__['m'].__get__(obj, A)``.
For instance bindings, the precedence of descriptor invocation depends on the
-which descriptor methods are defined. Data descriptors define both
-:meth:`__get__` and :meth:`__set__`. Non-data descriptors have just the
+which descriptor methods are defined. Normally, data descriptors define both
+:meth:`__get__` and :meth:`__set__`, while non-data descriptors have just the
:meth:`__get__` method. Data descriptors always override a redefinition in an
instance dictionary. In contrast, non-data descriptors can be overridden by
-instances.
+instances. [#]_
Python methods (including :func:`staticmethod` and :func:`classmethod`) are
implemented as non-data descriptors. Accordingly, instances can redefine and
@@ -2242,6 +2242,13 @@ For more information on context managers, see :ref:`typecontextmanager`.
.. [#] This, and other statements, are only roughly true for instances of new-style
classes.
+.. [#] A descriptor can define any combination of :meth:`__get__`,
+ :meth:`__set__` and :meth:`__delete__`. If it does not define :meth:`__get__`,
+ then accessing the attribute even on an instance will return the descriptor
+ object itself. If the descriptor defines :meth:`__set__` and/or
+ :meth:`__delete__`, it is a data descriptor; if it defines neither, it is a
+ non-data descriptor.
+
.. [#] For operands of the same type, it is assumed that if the non-reflected method
(such as :meth:`__add__`) fails the operation is not supported, which is why the
reflected method is not called.