我有def
似乎适用于 python3 的 python 定义:
def get_default_device(use_gpu: bool = True) -> cl.Device:
在 python2 下,我收到以下语法错误:
Traceback (most recent call last):
File "map_copy.py", line 9, in <module>
import utility
File "/home/root/pyopencla/ch3/utility.py", line 6
def get_default_device(use_gpu: bool = True) -> cl.Device:
^
SyntaxError: invalid syntax
如何使类型提示与 python2 兼容?