Я хотел бы определить свойство Python вне определения класса:
c = C()
c.user = property(lambda self: User.objects.get(self.user_id))
print c.user.email
Но я получаю следующую ошибку:
AttributeError: 'property' object has no attribute 'email'
Каков правильный синтаксис для определения свойства вне определения класса?
Редактировать: я использую салат
from lettuce import *
from django.test.client import Client
Client.user_id = property(lambda self: self.browser.session.get('_auth_user_id'))
Client.user = property(lambda self: User.objects.get(self.user_id))
@before.each_scenario
def set_browser(scenario):
world.browser = Client()