Demidov Andrey wrote:
class MyClass: def __init__(self, a): self.a = a # and some heavy works which I would like to do once def say(self): return a
Change:
def say(self):
return a
to:
def say(self):
return self.a
Cheers,
Brian
--
http://mail.python.org/mailman/listinfo/python-list
