def super(cls, inst):
    mro = inst.__class__.mro()
    return mro[mro.index(cls) + 1]

super做了这些事