How do I properly override __setattr__ and __getattribute__ on new-style classes in Python?
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 want to handle, and I want the default behavior for anything else. For __getattribute__ , it seems that I can request the default behavior simply by raising AttributeError . However, how can I achieve the same in __setattr__ ? Here is a trivial example, implementing a class with immutable fields "A", "B", and "C". class ABCImmutable(SomeSuperclass): def __getattribute__(self, name): if name in ("A", "B", "C"): return "Immutable value of %s" % name else: