]> granicus.if.org Git - python/commitdiff
Issue 10988: fix description of super's descriptor call.
authorRaymond Hettinger <python@rcn.com>
Tue, 22 Mar 2011 22:28:45 +0000 (15:28 -0700)
committerRaymond Hettinger <python@rcn.com>
Tue, 22 Mar 2011 22:28:45 +0000 (15:28 -0700)
Doc/reference/datamodel.rst

index 41f6a77cf51200c1b2c3cfa8c53da90c1d7f6d24..12dc4d8e3c4addcf53697652b2514b0a2c4604eb 100644 (file)
@@ -1608,7 +1608,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