Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aa48b8 commit 03acba6Copy full SHA for 03acba6
1 file changed
Doc/howto/descriptor.rst
@@ -117,7 +117,7 @@ The important points to remember are:
117
* non-data descriptors may be overridden by instance dictionaries.
118
119
The object returned by ``super()`` also has a custom :meth:`__getattribute__`
120
-method for invoking descriptors. The call ``super(B, obj).m()`` searches
+method for invoking descriptors. The attribute lookup ``super(B, obj).m`` searches
121
``obj.__class__.__mro__`` for the base class ``A`` immediately following ``B``
122
and then returns ``A.__dict__['m'].__get__(obj, B)``. If not a descriptor,
123
``m`` is returned unchanged. If not in the dictionary, ``m`` reverts to a
0 commit comments