# -*- Mode: Python -*- # vi:si:et:sw=4:sts=4:ts=4 # this is a file that contains two classes # the second class's constructor creates an instance of the first class One: pass class Two: def __init__(self): self.one = One()