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 eric.smith
Recipients eric.smith, jeffersonqin
Date 2022-03-16.15:58:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1647446317.39.0.262700579223.issue47034@roundup.psfhosted.org>
In-reply-to
Content
You're probably doing something like:

parent.i = 3

instead of:

parent.child.field = 0.6

In the first one, you're setting an instance attribute on parent, on the second, you're modifying an attribute of the class attribute.

In any event, there's no bug here, so I'm going to close this. If you have followup questions, I suggest you use the python-list mailing list or https://discuss.python.org/c/users
History
Date User Action Args
2022-03-16 15:58:37eric.smithsetrecipients: + eric.smith, jeffersonqin
2022-03-16 15:58:37eric.smithsetmessageid: <1647446317.39.0.262700579223.issue47034@roundup.psfhosted.org>
2022-03-16 15:58:37eric.smithlinkissue47034 messages
2022-03-16 15:58:37eric.smithcreate