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 AlexWaygood, Spencer Brown, ariebovenberg, eric.smith, hynek, serhiy.storchaka, sobolevn
Date 2022-03-17.11:53:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1647518034.98.0.394036602264.issue46382@roundup.psfhosted.org>
In-reply-to
Content
Serhiy: Could you point to some documentation on __slotnames__? I see a few references in the code to it, but it's not set on simple test class.

>>> class A:
...     __slots__=('a',)
...
>>> A.__slotnames__
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: type object 'A' has no attribute '__slotnames__'. Did you mean: '__slots__'?
>>>
History
Date User Action Args
2022-03-17 11:53:55eric.smithsetrecipients: + eric.smith, hynek, serhiy.storchaka, Spencer Brown, sobolevn, AlexWaygood, ariebovenberg
2022-03-17 11:53:54eric.smithsetmessageid: <1647518034.98.0.394036602264.issue46382@roundup.psfhosted.org>
2022-03-17 11:53:54eric.smithlinkissue46382 messages
2022-03-17 11:53:54eric.smithcreate