Hi, A question. Is it possible to dynamically override a property?
class A(object):
@property
def return_five(self):
return 5
I would like to override the property for an instance of A to say the
string 'bla'.
--
http://mail.python.org/mailman/listinfo/python-list
