有什么办法让类型提示适用于2.7 / 3.6的VS代码?

时间:2017-11-14 16:10:25

标签: python visual-studio-code

我想在一些地方使用类型提示。此语法适用于VS代码,但与2.7:

不兼容
props

据我所知,以下是使用提示的建议方法,但VS代码无法识别它:

def foo(a: str, b: int) -> str:
    pass

以下作品,虽然我不想这样做:

def foo(a, b):
    # type: (str, int) -> str
    pass

有更好的方法吗?

0 个答案:

没有答案