getattr的最大递归深度错误

时间:2012-08-28 16:20:48

标签: python exception-handling recursion descriptor

我有这段代码;

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]中获得了最大递归深度错误。我希望该行获取用于当前描述符实例的变量的名称。谁能看到我在这里做错了什么?

1 个答案:

答案 0 :(得分:9)

getattr()来电正在呼叫您的__get__

解决此问题的一种方法是显式调用超类object

object.__getattribute__(instance, name)

或者,更清楚:

instance.__dict__[name]