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 sobolevn
Recipients ariebovenberg, eric.smith, sobolevn
Date 2022-01-15.08:23:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1642234999.47.0.344704948814.issue46382@roundup.psfhosted.org>
In-reply-to
Content
Arie, can you please explain what is the technical difference between these two cases:

```python
class A:
    __slots__ = ('a', )
    # fields

class B(A):
    __slots__ = ('a', 'b')
    # fields
```

And:

```python
class C:
    __slots__ = ('a', )
    # fields

class D(C):
    __slots__ = ('b', )
    # fields
```

?
History
Date User Action Args
2022-01-15 08:23:19sobolevnsetrecipients: + sobolevn, eric.smith, ariebovenberg
2022-01-15 08:23:19sobolevnsetmessageid: <1642234999.47.0.344704948814.issue46382@roundup.psfhosted.org>
2022-01-15 08:23:19sobolevnlinkissue46382 messages
2022-01-15 08:23:19sobolevncreate