Hi all!
I want to make a subclass of dict and I have read about subclassing and the super method.
The problem that I do not get is how I override the following method:
dict[key] = value
This creates a new key with the specified value.
I want to override this to make some file writing and the call super, how do I do this?
Many thanks in advance!
Marcux