Constructor of object

inline rodin.alexander at gmail.com
Wed Mar 14 13:53:29 EDT 2007


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?




More information about the Python-list mailing list