Skip to content
Advertisement

When is `__dict__` re-initialized?

I subclass dict so that the attributes are identical to the keys:

JavaScript

and it works as expected:

JavaScript

But if I re-write __setattr__ as

JavaScript

then __dict__ will be re-created in initialization and the attributes will turn inaccessible:

JavaScript

Adding a paired __getattr__ as below will get around the AttributeError

JavaScript

but still __dict__ is cleared:

JavaScript

Thanks for any explanations.

Advertisement

Answer

There’s no reinitialization. Your problem is that self.__dict__ = self hits your __setattr__ override. It’s not actually changing the dict used for attribute lookups. It’s setting an entry for the '__dict__' key on self and leaving the attribute dict untouched.

If you wanted to keep your (pointless) __setattr__ override, you could bypass it in __init__:

JavaScript

but it’d be easier to just take out your __setattr__ override. While you’re at it, take out that __repr__, too – once you fix your code, the only reason there would be a '__dict__' key is if a user sets it themselves, and if they do that, you should show it.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement