[issue34387] Deletion of attributes in dataclass is buggy!
Kamyar Inanloo added the comment: Actually it just sets the attribute to its default value, instead of removing it from the instance. -- ___ Python tracker <https://bugs.python.org/issue34
[issue34387] Deletion of attributes in dataclass is buggy!
New submission from Kamyar Inanloo : When using del or delattr on an instance of dataclass, attribute does not get deleted truly! using vars or getattr still returns the deleted attribute just using delattr again raises error! -- components: Argument Clinic messages: 323442 nosy