From ee49484c0f0d0d79e8fc40835da10b78f89ae503 Mon Sep 17 00:00:00 2001 From: Jouke Witteveen Date: Sat, 20 Nov 2021 17:55:35 +0100 Subject: [doc] Clarify MRO precedence in descriptor super binding section (GH-29539) A similar sentence is present in the 'Invocation from super' section of the descriptor HOWTO, where it is already correct. --- Doc/reference/datamodel.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index b04c95f..b14b2cb 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -1820,7 +1820,7 @@ Class Binding 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: + immediately following ``B`` and then invokes the descriptor with the call: ``A.__dict__['m'].__get__(obj, obj.__class__)``. For instance bindings, the precedence of descriptor invocation depends on -- cgit v0.12