주 메뉴 열기

wwiki β

바뀜

Python

509 바이트 추가됨, 2019년 6월 5일 (수) 05:26
python3
==패키지 설치==
$ sudo pip install 패키지명
 
==에러==
에러메시지: TypeError: 'NoneType' object is not callable
 
/usr/lib/python3.5/weakref.py 파일수정해야한다.
 
공백과 탭은 구분되므로 공백으로 맞추어 수정해야 한다.
 
다음을
def remove(wr, selfref=ref(self)):
다음으로 수정한다.
def remove(wr, selfref=ref(self), _atomic_removal=_remove_dead_weakref):
 
다음을
_remove_dead_weakref(d, wr.key)
다음으로 수정한다.
_atomic_removal(d, wr.key)
편집
2,431