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 serhiy.storchaka
Recipients asvetlov, bluenix, serhiy.storchaka, yselivanov
Date 2021-06-05.15:15:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1622906126.51.0.629937087993.issue44318@roundup.psfhosted.org>
In-reply-to
Content
What is the problem with this?

Setting __slots__ is needed if we want to save memory for creating a lot of instances. It can also be used for preventing adding arbitrary attributes and/or making weak references. Setting __slots__ in base class is required if you want to get a benefit of setting __slots__ in any of subclasses.
History
Date User Action Args
2021-06-05 15:15:26serhiy.storchakasetrecipients: + serhiy.storchaka, asvetlov, yselivanov, bluenix
2021-06-05 15:15:26serhiy.storchakasetmessageid: <1622906126.51.0.629937087993.issue44318@roundup.psfhosted.org>
2021-06-05 15:15:26serhiy.storchakalinkissue44318 messages
2021-06-05 15:15:26serhiy.storchakacreate