class Fruit: pass class Orange(Fruit): def __init__(self): super(Orange, self).__init__() # [super-with-arguments]