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 WildCard65
Recipients WildCard65
Date 2020-07-13.23:30:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1594683012.02.0.626450993111.issue41294@roundup.psfhosted.org>
In-reply-to
Content
Currently within Python, the attribute '__qualname__' is restricted to only be a string valued attribute.

This makes is rather cumbersome for anyone who wants to implement '__qualname__' as a property, instead of a plain attribute (especially if '__slots__' are used)

Python also has the type 'DynamicClassAttribute' who's only first party user is the 'enum' module, BUT it only supports shadow get requests.

Therefore, I'm requesting both changing DynamicClassAttribute to supoort __set__ and __del__ to function like __get__ AND to allow __qualname__ to be an instance of DynamicClassAttribute.
History
Date User Action Args
2020-07-13 23:30:12WildCard65setrecipients: + WildCard65
2020-07-13 23:30:12WildCard65setmessageid: <1594683012.02.0.626450993111.issue41294@roundup.psfhosted.org>
2020-07-13 23:30:11WildCard65linkissue41294 messages
2020-07-13 23:30:11WildCard65create