Bug on the site page - descriptor

Hello! I was found next issue: https://docs.python.org/3.3/howto/descriptor.html On this page, in the text block: For objects, the machinery is in object.__getattribute__() which transforms b.x into type(b).__dict__['x'].__get__(b, type(b)). The implementation works through a precedence chain that gives data descriptors priority over instance variables, instance variables priority over non-data descriptors, and assigns lowest priority to __getattr__() if provided. The full C implementation can be found in PyObject_GenericGetAttr() in Objects/object.c. There not found page while refereed by click on Onject.c http://svn.python.org/view/python/trunk/Objects/object.c?view=markup [image: image.png]

You are reading Python 3.3 document. It is not maintained. Read it here. https://docs.python.org/3.7/howto/descriptor.html#invoking-descriptors On Wed, Apr 10, 2019 at 6:53 PM Иван Благополучный <nuclearrazor@gmail.com> wrote:
Hello! I was found next issue:
https://docs.python.org/3.3/howto/descriptor.html
On this page, in the text block:
For objects, the machinery is in object.__getattribute__() which transforms b.x into type(b).__dict__['x'].__get__(b, type(b)). The implementation works through a precedence chain that gives data descriptors priority over instance variables, instance variables priority over non-data descriptors, and assigns lowest priority to __getattr__() if provided. The full C implementation can be found in PyObject_GenericGetAttr() in Objects/object.c.
There not found page while refereed by click on Onject.c
http://svn.python.org/view/python/trunk/Objects/object.c?view=markup
_______________________________________________ docs mailing list docs@python.org https://mail.python.org/mailman/listinfo/docs
-- Inada Naoki <songofacandy@gmail.com>
participants (2)
-
Inada Naoki
-
Иван Благополучный