Нужно примерно следующее
# -*- coding: utf-8 -*-
class SomeClass(object):
def some_func(self):
pass
#Здесь все работает
some_func.description = 'This is some_func description'
def get_value(self):
return 1
def set_value(self, val):
pass
something = property(get_value, set_value)
#А здесь не работает
#something.description = 'This is something property description'
sc = SomeClass()
print sc.some_func
print sc.some_func.description
print sc.something
#Соответственно здесь тоже ошибка
#print sc.something.description