Chain-calling parent initialisers in python [duplicate]

Python 3 includes an improved super() which allows use like this:

super().__init__(args)

Leave a Comment