Open
Description
As discussed in #2266, this apparently doesn't work yet:
# See http://stackoverflow.com/questions/3203286/how-to-create-a-read-only-class-property-in-python
from typing import *
T = TypeVar('T')
V = TypeVar('V')
class classproperty(Generic[T, V]):
def __init__(self, getter: Callable[[Type[T]], V]) -> None:
self.getter = getter
def __get__(self, instance: Any, owner: Type[T]) -> V:
# instance is really None, but we don't care
return self.getter(owner)
class C:
@classproperty # <-- error here
def foo(cls) -> int:
return 42
reveal_type(C.foo)
@gvanrossum reported the following output from mypy:
classprop.py: note: In class "C":
classprop.py:20: error: Argument 1 to "classproperty" has incompatible type Callable[[C], int]; expected Callable[[Type[None]], int]
classprop.py: note: At top level:
classprop.py:25: error: Revealed type is 'classprop.classproperty[builtins.None, builtins.int*]'