当类型检查元组解包时,我在这个程序上得到pylance错误(基本设置)。其思想是一个元组可以有2或3个特定类型的元素。
# pylance typechecking "basic"
from typing import Tuple, Union
TT = Union[Tuple[str,str,float], Tuple[str,str]]
def f(v: TT):
if len(v) == 3:
a,b,c = v # pylance reportGeneralTypeIssues: Tuple size mismatch: expected 3 but received 2
elif len(v) == 2:
a,b = v # pylance reportGeneralTypeIssues: Tuple size mismatch: expected 2 but received 3
我应该如何去说服检查器这是正确的(没有#type ignore)?
我相信Python 3.10会通过使用typeguard来解决这个问题。参见PEP 647,其中甚至包括一个元组中元素数量的示例。