소스 검색

Updated docs example to clear cached_property without raising AttributeError.

Signed-off-by: SaJH <wogur981208@gmail.com>
SaJH 6 달 전
부모
커밋
b0d9c1fe32
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/ref/utils.txt

+ 1 - 1
docs/ref/utils.txt

@@ -521,7 +521,7 @@ https://web.archive.org/web/20110718035220/http://diveintomark.org/archives/2004
     The cached value can be treated like an ordinary attribute of the instance::
 
         # clear it, requiring re-computation next time it's called
-        del person.friends  # or delattr(person, "friends")
+        person.__dict__.pop("friends", None)
 
         # set a value manually, that will persist on the instance until cleared
         person.friends = ["Huckleberry Finn", "Tom Sawyer"]