Nikita Sobolev <[email protected]> added the comment:
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
```
?
----------
nosy: +sobolevn
_______________________________________
Python tracker <[email protected]>
<https://bugs.python.org/issue46382>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com