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