def __getattr__(self, key):
try:
return self.data[key]
except KeyError, k:
raise AttributeError, k
def __setattr__(self, key, value):
self.data[key] = value
def __delattr__(self, key):
try:
del self.data[key]
except KeyError, k:
raise AttributeError, k
What is the use of these rows?Tzury Bar Yochay wrote: > user_id links to users.id --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/webpy?hl=en -~----------~----~----~----~------~----~------~--~--- |
- [webpy] regarding storing extended user information paul jobs
- [webpy] Re: regarding storing extended user informat... Tzury Bar Yochay
- [webpy] Re: regarding storing extended user info... Paul Jobs
