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 xiang.zhang
Recipients christian.heimes, methane, skrah, vstinner, xiang.zhang
Date 2016-09-13.13:40:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1473774007.1.0.360418114065.issue28120@psf.upfronthosting.co.za>
In-reply-to
Content
No need, you can reproduce it by this:

>>> class C:
...     pass
... 
>>> a, b = C(), C()
>>> a.a, a.b = 1, 2
>>> b.a = 1
>>> b.__dict__.pop('b')
python: Objects/dictobject.c:1739: _PyDict_Pop: Assertion `ix >= 0' failed.
Aborted (core dumped)
History
Date User Action Args
2016-09-13 13:40:07xiang.zhangsetrecipients: + xiang.zhang, vstinner, christian.heimes, methane, skrah
2016-09-13 13:40:07xiang.zhangsetmessageid: <1473774007.1.0.360418114065.issue28120@psf.upfronthosting.co.za>
2016-09-13 13:40:07xiang.zhanglinkissue28120 messages
2016-09-13 13:40:07xiang.zhangcreate