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