My idea is to inject a common mixin class like class Foo(Bar, Mixin):
... class Mixin: def __getattr__(self, k)
print repr(self), k
return Foo.__getattr__(self, k)
def my__getattr__factory(SuperClass):
def __getattr__(self, k):
print repr(self), k
return SuperClass.__getattr__(self, k)
class Foo(Bar): # <- No mixin
__getattr__ = my_getattr__generator(Bar) # <- Bar, not Foo
On Mon, Nov 7, 2016, at 14:01, Andreas Jung wrote:
> Python 2.7 is different because all classes are automatically new-style
> classes.
> In Python 2.7 you would have to overwrite __getattribute__() but I am on
> Python 2.3 here.
No :)
In Python 3 all classes are new-style classes. In Python 2 (including
2.7) you have to be explicit and either inherit from object (new-style)
or not (old-style).
In Python 2.7 you get:
>>> class A: pass
>>> class B(object): pass
>>> type(A)
<type 'classobj'>
>>> type(B)
<type 'type'>
In Python 3 both are of type 'type'.
And only new-style classes use '__getattribute__'. '__getattr__' is the
right approach for old-style classes in any Python 2 version, even in
Python 2.7.
Hanno
_______________________________________________
Zope-Dev maillist - Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
** No cross posts or HTML encoding! **
(Related lists -
https://mail.zope.org/mailman/listinfo/zope-announce
https://mail.zope.org/mailman/listinfo/zope )