This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author brett.cannon
Recipients Kamyar Inanloo, brett.cannon, eric.smith
Date 2018-08-13.21:33:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1534195997.54.0.56676864532.issue34387@psf.upfronthosting.co.za>
In-reply-to
Content
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)
```
History
Date User Action Args
2018-08-13 21:33:17brett.cannonsetrecipients: + brett.cannon, eric.smith, Kamyar Inanloo
2018-08-13 21:33:17brett.cannonsetmessageid: <1534195997.54.0.56676864532.issue34387@psf.upfronthosting.co.za>
2018-08-13 21:33:17brett.cannonlinkissue34387 messages
2018-08-13 21:33:17brett.cannoncreate