10

Callable *argsMyPy 与and有一些问题**kwargs,尤其是关于装饰器的问题,详见:https ://github.com/python/mypy/issues/1927

具体来说,对于只包装函数(并且不更改其签名)的没有参数的装饰器,您需要以下内容:

from typing import Any, Callable, cast, TypeVar

FuncT = TypeVar('FuncT', bound=Callable[..., Any])

def print_on_call(func: FuncT) -> FuncT:
    def wrapped(*args, **kwargs):
        print("Running", func.__name__)
        return func(*args, **kwargs)
    return cast(FuncT, wrapped)

最后cast()的应该是不必要的(MyPy 应该能够通过调用func最后wrapped包装的 is来推导出它FuncT -> FuncT)。我可以忍受这个,直到它被修复。

但是,当您引入带参数的装饰器时,这会非常糟糕。考虑装饰器:

def print_on_call(foo):
    def decorator(func):
        def wrapped(*args, **kwargs):
            print("Running", foo)
            return func(*args, **kwargs)
        return wrapped
    return decorator

这是这样使用的:

@print_on_call('bar')
def stuff(a, b):
    return a + b

我们可能会尝试输入它(使用 Guido 认可的无参数示例作为指南),如下所示:

from typing import Any, Callable, Dict, List, TypeVar

FuncT = TypeVar('FuncT', bound=Callable[..., Any])

def print_on_call(foo: str) -> Callable[[FuncT], FuncT]:
    def decorator(func: FuncT) -> FuncT:
        def wrapped(*args: List[Any], **kwargs: Dict[str, Any]) -> Any:
            print("Running", foo)
            return func(*args, **kwargs)
        return cast(FuncT, wrapped)
    return cast(Callable[[FuncT], FuncT], decorator)

这似乎是类型检查,但是当我们使用它时:

@print_on_call('bar')
def stuff(a: int, b: int) -> int:
    return a + b

我们得到一个严重的错误:

error: Argument 1 has incompatible type Callable[[int, int], int]; expected <uninhabited>

我对这怎么可能有点困惑。正如PEP 484中所讨论的,它似乎Callable[[int, int], int]应该是Callable[..., Any].

我认为这可能是在返回类型 ofprint_on_call和 aa 参数和返回类型 to之间使用泛型之间的错误迭代decorator,所以我将我的示例缩减到最低限度(尽管不再是一个工作装饰器,它仍然应该进行类型检查):

from typing import Any, Callable, Dict, List, TypeVar

FuncT = TypeVar('FuncT', bound=Callable[..., Any])

def print_on_call(foo: str) -> Callable[[FuncT], FuncT]:
    return cast(Callable[[FuncT], FuncT], None)

但是,这仍然会导致上述错误。这本来是我可以接受#type: ignore的,但不幸的是,由于这个问题,任何用这个装饰器装饰的函数都有 type <uninhabited>,所以你开始到处失去类型安全。

这一切都说(tl; dr):

您如何使用参数键入装饰器(不修改函数的签名)?以上是bug吗?可以解决吗?

MyPy 版本:0.501(截至本文发布时的最新版本)

4

2 回答 2

8

如今,这由 mypy 直接支持:

https://mypy.readthedocs.io/en/stable/generics.html#declaring-decorators

IE

FuncT = TypeVar("FuncT", bound=Callable[..., Any]) 

def my_decorator(func: FuncT) -> FuncT:
    @wraps(func)
    def wrapped(*args: Any, **kwargs: Any) -> Any:
        print("something")
        return func(*args, **kwargs)
    return cast(FuncT, wrapped)
于 2021-01-07T13:45:51.307 回答
7

哎呀!看来我搜索的不够仔细。已经有一个问题和解决方法:https ://github.com/python/mypy/issues/1551#issuecomment-253978622

于 2017-03-25T06:09:21.353 回答