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 methane, ned.deily, rhettinger, serhiy.storchaka, vstinner, xiang.zhang
Date 2016-09-17.12:44:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1474116272.08.0.196950006743.issue28183@psf.upfronthosting.co.za>
In-reply-to
Content
Serhiy, I don't understand your patch. You delete the logic about split table and then iterating split table actually fails.

>>> class C:
...     pass
... 
>>> a, b = C(), C()
>>> a.a, a.b = 1, 2
>>> list(b.__dict__)
['a', 'b']
>>> 

Without attributes now b also get entries when iterating.
History
Date User Action Args
2016-09-17 12:44:32xiang.zhangsetrecipients: + xiang.zhang, rhettinger, vstinner, ned.deily, methane, serhiy.storchaka
2016-09-17 12:44:32xiang.zhangsetmessageid: <1474116272.08.0.196950006743.issue28183@psf.upfronthosting.co.za>
2016-09-17 12:44:32xiang.zhanglinkissue28183 messages
2016-09-17 12:44:31xiang.zhangcreate