[issue34387] Deletion of attributes in dataclass is buggy

Brett Cannon report at bugs.python.org
Mon Aug 13 17:33:17 EDT 2018


Brett Cannon <brett at python.org> added the comment:

I agree with Eric that without concrete details I suspect everything is working as expected. E.g.

```python
class Foo:
   attr = -13

ins = Foo()
ins.attr = 42
print(ins.attr)
del ins.attr
print(ins.attr)
```

----------
nosy: +brett.cannon
title: Deletion of attributes in dataclass is buggy! -> Deletion of attributes in dataclass is buggy

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue34387>
_______________________________________


More information about the Python-bugs-list mailing list