This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Dennis Sweeney
Recipients ABELARDOLG, Dennis Sweeney, docs@python
Date 2020-06-30.08:18:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1593505098.46.0.257309825924.issue41166@roundup.psfhosted.org>
In-reply-to
Content
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 is referenced by name using dotted expressions. For example, if an object `o` has an attribute `a` it would be referenced as `o.a`."""

The phrase "class attribute" is used throughout the documentation to mean an attribute of a class. To reference the class attribute called `foo` of the class called `MyClass`, we write `MyClass.foo`.

Unless I misunderstand you, I don't think there is an issue.
History
Date User Action Args
2020-06-30 08:18:18Dennis Sweeneysetrecipients: + Dennis Sweeney, docs@python, ABELARDOLG
2020-06-30 08:18:18Dennis Sweeneysetmessageid: <1593505098.46.0.257309825924.issue41166@roundup.psfhosted.org>
2020-06-30 08:18:18Dennis Sweeneylinkissue41166 messages
2020-06-30 08:18:18Dennis Sweeneycreate