Message411462
I guess at least there should be a warning about this in dataclasses docs?
The reproducer with dataclasses (which exhibits the same error on 3.10 and 3.11):
import dataclasses
@dataclasses.dataclass(slots=True)
class A:
pass
@dataclasses.dataclass(slots=True)
class B(A):
def test(self):
super()
B().test() |
|
Date |
User |
Action |
Args |
2022-01-24 10:43:44 | petr.viktorin | set | recipients:
+ petr.viktorin, eric.smith, eric.snow, hynek, tinchester, frenzy, Dennis Sweeney |
2022-01-24 10:43:44 | petr.viktorin | set | messageid: <1643021024.57.0.870611136749.issue46404@roundup.psfhosted.org> |
2022-01-24 10:43:44 | petr.viktorin | link | issue46404 messages |
2022-01-24 10:43:44 | petr.viktorin | create | |
|