python의 설명자 (descriptor), 장식기 (property) 로 인한 무한 귀속 문제 공유

1891 단어
방금 겪은 작은 문제를 공유합니다. 저는 이와 유사한python 코드를 가지고 있습니다.
 
  
# coding: utf-8

class A(object):

    @property
    def _value(self):
#        raise AttributeError("test")
        return {"v": "This is a test."}

    def __getattr__(self, key):
        print "__getattr__:", key
        return self._value[key]

if __name__ == '__main__':
    a = A()
    print a.v


실행 후 정확한 결과를 얻을 수 있다
 
  
__getattr__: v
This is a test.

하면, 만약, 만약...
 
  
#        raise AttributeError("test")

이 줄의 주석을 없애면 바로value 방법에서 AttributeError 이상을 던지면 일이 좀 이상해집니다.프로그램이 실행될 때 이상을 던지지 않고 무한 귀속에 들어갑니다.
 
  
File "attr_test.py", line 12, in __getattr__
    return self._value[key]
  File "attr_test.py", line 12, in __getattr__
    return self._value[key]
RuntimeError: maximum recursion depth exceeded while calling a Python object

여러모로 찾아보니property 장식기의 문제이고property는 실제로descriptor입니다.python doc에서 다음과 같은 텍스트를 볼 수 있습니다.
 
  
object.__get__(self, instance, owner)

Called to get the attribute of the owner class (class attribute access) or of an instance of that class (instance attribute access). owner is always the owner class, while instance is the instance that the attribute was accessed through, or None when the attribute is accessed through the owner. This method should return the (computed) attribute value or raise an AttributeError exception.


이렇게 하면 사용자가 액세스할 수 있습니다.value에서 AttributeError를 던져 호출getattr__방법을 찾아서 가져오세요.이렇게 하면 프로그램은 무한귀속이 된다.
이 문제는 보기에는 복잡하지 않지만, 당신의value 방법은 은밀하게 AttributeError를 던지면 디버깅이 어려워집니다.

좋은 웹페이지 즐겨찾기