【发布时间】:2012-08-28 16:20:48
【问题描述】:
我有这个代码;
class NumberDescriptor(object):
def __get__(self, instance, owner):
name = (hasattr(self, "name") and self.name)
if not name:
name = [attr for attr in dir(owner) if getattr(owner,attr) is self][0]
self.name = name
return getattr(instance, '_' + name)
def __set__(self,instance, value):
name = (hasattr(self, "name") and self.name)
if not name:
owner = type(instance)
name = [attr for attr in dir(owner) if getattr(owner,attr) is self][0]
self.name = name
setattr(instance, '_' + name, int(value))
class Insan(object):
yas = NumberDescriptor()
a = Insan()
print a.yas
a.yas = "osman"
print a.yas
我在name = [attr for attr in dir(owner) if getattr(owner,attr) is self][0] 行中遇到最大递归深度错误。我希望那行得到用于当前描述符实例的变量的名称。谁能看到我在这里做错了什么?
【问题讨论】:
标签: python exception-handling recursion descriptor