At 2008-11-06T16:57:39Z, mrstevegross <[EMAIL PROTECTED]> writes: > class Outer: > class Inner: > def __init__(self): > pass > def __init__ (self): > a = Inner() > Outer()
Try instead:
class Outer:
def __init__(self):
a = self.Inner()
--
Kirk Strauser
The Day Companies
--
http://mail.python.org/mailman/listinfo/python-list
