Brett Cannon <br...@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 <rep...@bugs.python.org>
<https://bugs.python.org/issue34387>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to