abstractmethod

    abstract class에서 abstract property 생성하기

    python 3.3 버전 이전까지는 @abstractproperty 라는 annotation이 제공되었습니다. 하지만, python 3.3 버전 이상에서는 사용할 수 없습니다. 만약 사용하게 되면, 아래와 같은 경고 문구가 나타납니다. 'abc.abstractproperty' is deprecated since Python 3.3. Use 'property' with 'abc.abstractmethod' instead. less... (Ctrl+F1) Inspection info: This inspection highlights usages of Python functions, classes or methods which are marked as deprecated (which raise a Deprec..