[issue41166] CLASS ATTRIBUTES

2020-06-30 Thread ABELARDO
ABELARDO added the comment: Steven D'Aprano: Yes, my fault. I will give an url where it is located. https://docs.python.org/3/tutorial/classes.html -- ___ Python tracker ___

[issue41166] CLASS ATTRIBUTES

2020-06-30 Thread ABELARDO
ABELARDO added the comment: Sorry, I don't have any doc where "class value" / "instance value" are mentioned. This idea is original from me originally based on my personal interpretation about OOP basic concepts. But it doesn't mean I'm wrong with my proposal. When you use the following

[issue41166] CLASS ATTRIBUTES

2020-06-30 Thread Steven D'Aprano
Steven D'Aprano added the comment: By the way, for future reports, it is much better to give the URL of the page and copy and paste the exact quote than to give a screen shot. Using a screen shot is inconvenient for us (we have to try to guess what URL you are referring to, there are *lots*

[issue41166] CLASS ATTRIBUTES

2020-06-30 Thread Steven D'Aprano
Steven D'Aprano added the comment: "Class attribute" and "instance attribute" are the usual terms used in the Python documentation and community. I have heard other terms used in other language communities, in particular "members" and "variables", but I've never come across one that uses

[issue41166] CLASS ATTRIBUTES

2020-06-30 Thread Dennis Sweeney
Dennis Sweeney added the comment: I think the word "attribute" is preferred over "value" because "value" can mean just about anything, whereas, according to https://docs.python.org/3/glossary.html?highlight=glossary , an attribute is specifically: """A value associated with an object which

[issue41166] CLASS ATTRIBUTES

2020-06-30 Thread ABELARDO
New submission from ABELARDO : Hi there, I have encountered a possible bug inside the documentation. In the attached picture you can see a portion of text highlighted ("Class attribute"). I think it's a typo since there is not "class attributes" nor "instance attributes" but "class value"