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