class Horse(object): def talk(self): print "Howdy." class Unicorn(object): def __init__(self, horse, horn): self.horse = horse self.horn = horn def talk(self): self.horse.talk()