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