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