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