diff --git a/stdlib/3/abc.pyi b/stdlib/3/abc.pyi index f50f7908d..b109ea74d 100644 --- a/stdlib/3/abc.pyi +++ b/stdlib/3/abc.pyi @@ -13,7 +13,7 @@ class ABCMeta(type): def register(cls: "ABCMeta", subclass: Type[Any]) -> None: ... def abstractmethod(callable: _FuncT) -> _FuncT: ... -def abstractproperty(callable: _FuncT) -> _FuncT: ... +class abstractproperty(property): ... # These two are deprecated and not supported by mypy def abstractstaticmethod(callable: _FuncT) -> _FuncT: ... def abstractclassmethod(callable: _FuncT) -> _FuncT: ...