[docs] Bug on the site page - descriptor

Иван Благополучный nuclearrazor at gmail.com
Tue Apr 9 18:01:22 EDT 2019


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]
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/docs/attachments/20190410/a7b6ff93/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image.png
Type: image/png
Size: 21028 bytes
Desc: not available
URL: <http://mail.python.org/pipermail/docs/attachments/20190410/a7b6ff93/attachment-0001.png>


More information about the docs mailing list