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 cjw296
Recipients Aaron Hall, cjw296, levkivskyi, rhettinger, serhiy.storchaka
Date 2019-11-16.01:14:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1573866858.83.0.954977862283.issue30463@roundup.psfhosted.org>
In-reply-to
Content
I will note that this means with:

class BaseClass(ABC):
    pass


class MyDerivedClass(BaseClass):

    def __init__(self, thing):
        self.thing = thing

thing = MyDerivedClass()

thing now has both __slots__ and, evidently, a dict. That's a bit weird and confusing.
History
Date User Action Args
2019-11-16 01:14:18cjw296setrecipients: + cjw296, rhettinger, serhiy.storchaka, levkivskyi, Aaron Hall
2019-11-16 01:14:18cjw296setmessageid: <1573866858.83.0.954977862283.issue30463@roundup.psfhosted.org>
2019-11-16 01:14:18cjw296linkissue30463 messages
2019-11-16 01:14:18cjw296create