打字:如何将所有者 class 绑定到通用描述符?

typing: How to bind owner class to generic descriptor?

我能否在 Python 中实现一个通用描述符,其方式将 support/respect/understand 其所有者的继承层次结构?

代码中应该更清楚:

from typing import (
    Generic, Optional, TYPE_CHECKING,
    Type, TypeVar, Union, overload,
)

T = TypeVar("T", bound="A")  # noqa

class Descr(Generic[T]):

    @overload
    def __get__(self: "Descr[T]", instance: None, owner: Type[T]) -> "Descr[T]": ...

    @overload
    def __get__(self: "Descr[T]", instance: T, owner: Type[T]) -> T: ...

    def __get__(self: "Descr[T]", instance: Optional[T], owner: Type[T]) -> Union["Descr[T]", T]:
        if instance is None:
            return self
        return instance


class A:
    attr: int = 123
    descr = Descr[T]()  # I want to bind T here, but don't know how


class B(A):
    new_attr: int = 123
    qwerty: str = "qwe"


if __name__ == "__main__":
    a = A()
    if TYPE_CHECKING:
        reveal_type(a.descr)  # mypy guess it is T? but I want A*
    print("a.attr =", a.descr.attr)  # mypy error: T? has no attribute "attr"
                                     # no runtime error
    b = B()
    if TYPE_CHECKING:
        reveal_type(b.descr)  # mypy said it's T? but I want B*

    print("b.new_attr =", b.descr.new_attr)  # mypy error: T? has no attribute "new_attr"
                                             # no runtime error
    print("b.qwerty =", b.descr.qwerty)  # mypy error: T? has no attribute "qwerty"
                                         # (no runtime error)

gist - gist

上几乎相同的代码片段

我不确定您是否需要将描述符class设为通用;在 Type[T] 到 return T:

的实例上使用 __get__ 可能就足够了
T = TypeVar("T")  # noqa

class Descr:
    @overload
    def __get__(self, instance: None, owner: Type[T]) -> "Descr": ...

    @overload
    def __get__(self, instance: T, owner: Type[T]) -> T: ...

    def __get__(self, instance: Optional[T], owner: Type[T]) -> Union["Descr", T]:
        if instance is None:
            return self
        return instance


class A:
    attr: int = 123
    descr = Descr()


class B(A):
    new_attr: int = 123
    qwerty: str = "qwe"

并且您的每个示例都按您的要求运行,并且您收到

的错误
print("b.spam =", b.descr.spam)

产生

error: "B" has no attribute "spam"