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?
--
http://mail.python.org/mailman/listinfo/python-list
