I want to override my Python class\'s __getattribute__ and __setattr__ methods. My use case is the usual one: I have a few special names that I wan
SomeSuperclass.__setattr__(self, name, value) ?
It's
super(ABCImmutable, self).__setattr__(name, value)
in Python 2, or
super().__setattr__(name, value)
in Python 3.
Also, raising AttributeError is not how you fall back to the default behavior for __getattribute__. You fall back to the default with
return super(ABCImmutable, self).__getattribute__(name)
on Python 2 or
return super().__getattribute__(name)
on Python 3.
Raising AttributeError skips the default handling and goes to __getattr__, or just produces an AttributeError in the calling code if there's no __getattr__.
See the documentation on Customizing Attribute Access.