我尝试从Text
中导出typing
,
from typing import Text
我收到以下错误,
Traceback (most recent call last):
File "<input>", line 1, in <module>
ImportError: cannot import name 'Text'
我正在使用Python 3.5
有什么建议吗?
答案 0 :(得分:0)
这是Python 3.5.0和3.5.1的已知问题 - 请参阅https://github.com/python/mypy/issues/1838和https://github.com/awslabs/aws-encryption-sdk-cli/issues/114。 正如他们在那里所说的那样,您可以在键入导入周围添加try / catch块 - 或者您可以使用Python的更新版本。