Message199920
Updated and renamed the DynamicClassAttribute tests, and discovered that classify_class_attrs is not handling instance portion correctly. class Meta(type): def __getattr__(self, name): if name == 'ham': return 'spam' return super().__getattr__(name) class VA(metaclass=Meta): @types.DynamicClassAttribute def ham(self): return 'eggs' We should see both eggs and spam, but only eggs is showing up. | |
| Date | User | Action | Args | | 2013-10-14 16:10:10 | ethan.furman | set | recipients: + ethan.furman, barry, mjpieters, ncoghlan, pitrou, r.david.murray, eli.bendersky, python-dev | | 2013-10-14 16:10:10 | ethan.furman | set | messageid: <1381767010.75.0.536215134631.issue19030@psf.upfronthosting.co.za> | | 2013-10-14 16:10:10 | ethan.furman | link | issue19030 messages | | 2013-10-14 16:10:10 | ethan.furman | create | | |