summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-03-22 22:33:40 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-03-22 22:33:40 (GMT)
commit1aa8743d1c0a054ac2dfbcd8ca8896fdd06e1b8b (patch)
treebe7ea5ee366e6c752249028eb6b425e881ab0887 /Doc
parent74b015e243a1ba4957504538b56fc037deb0dbfa (diff)
parentb199b2262cb37235447b9ab88e6479e227004d3c (diff)
downloadcpython-1aa8743d1c0a054ac2dfbcd8ca8896fdd06e1b8b.zip
cpython-1aa8743d1c0a054ac2dfbcd8ca8896fdd06e1b8b.tar.gz
cpython-1aa8743d1c0a054ac2dfbcd8ca8896fdd06e1b8b.tar.bz2
Issue 10988: fix description of super's descriptor call.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/reference/datamodel.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index d3fb2c8..09ddaf5 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -1418,7 +1418,7 @@ Super Binding
If ``a`` is an instance of :class:`super`, then the binding ``super(B,
obj).m()`` searches ``obj.__class__.__mro__`` for the base class ``A``
immediately preceding ``B`` and then invokes the descriptor with the call:
- ``A.__dict__['m'].__get__(obj, A)``.
+ ``A.__dict__['m'].__get__(obj, obj.__class__)``.
For instance bindings, the precedence of descriptor invocation depends on the
which descriptor methods are defined. A descriptor can define any combination