There is a standard inheritance procedure:
class Parent: def __init__(self, *args): self._subconstructor() def _subconstructor(self): pass class Child(Parent): def __init__(self, *args): super().__init__(*args) Is it possible in this case to override the behavior of the _subconstructor method from the Child class without overriding the __init__ method of the parent class itself?
