Python3 переопределяет класс: супер все еще вызывает старый класс
#python-3.x #class #redefinition #python-3.x #класс #переопределение Вопрос: Этот код: class a: def __init__(self): print("a here") class b(a): def __init__(self): print("b here") super().__init__() B = b() class a: def __init__(self): print("NEW…