inline wrote: > Hello! > I want to assign self to object of parent class in constructor, like > > def my_func(): > ... > return ParentClass() > > class MyClass (ParentClass): > def __init__(self): > self = my_func() > > but it not work, because "object not initialized". What i can do? >
You want to override the __new__ function. -- http://mail.python.org/mailman/listinfo/python-list