#!/usr/local/bin/python2 class C(object): def __init__(self): print self class D(C): def __init__(self): super(C).__init__(C()) D()