类型暗示python 3代码

时间:2015-05-28 11:33:15

标签: python python-2.7 python-3.x type-hinting

有没有办法让包含type hinting annotations的python 3代码也可以使用python 2?

def get(axyz: list, window_size: int=WINDOW_SIZE) -> numpy.array:
    return numpy.array(axyz)

更重要的是,甚至可能吗?

1 个答案:

答案 0 :(得分:0)

类型注释语法在python2中无效。 pep484提到了存根文件以与python2兼容。