8
votes
4answers
2k views
Inheritance and Overriding __init__ in python
I was reading 'Dive Into Python' and in the chapter on classes it gives this example:
class FileInfo(UserDict):
"store file metadata"
def __init__(self, filename=None):
…
