[issue16363] super cannot invoke descriptors

2012-10-30 Thread R. David Murray
R. David Murray added the comment: I believe this is a duplicate of issue 14965. If you agree please add yourself to nosy there and review the proposed patch and/or make your own proposal. If you think your issue is different you can reopen this one. -- nosy: +r.david.murray resoluti

[issue16363] super cannot invoke descriptors

2012-10-30 Thread Berker Peksag
Changes by Berker Peksag : -- versions: -Python 3.1, Python 3.5 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16363] super cannot invoke descriptors

2012-10-30 Thread Ronny Pfannschmidt
New submission from Ronny Pfannschmidt: this means its much harder to have a mixin to change the behaviour of a property instead of super(Mixin, self).prop = foo the code is super(Mixin, type(self)).prop.__set__(self, foo) which is way harder to understand the attached file demonstrates the pr