Python:从输入包

时间:2017-11-08 09:22:29

标签: python python-3.x pycharm

我尝试从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

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

这是Python 3.5.0和3.5.1的已知问题 - 请参阅https://github.com/python/mypy/issues/1838https://github.com/awslabs/aws-encryption-sdk-cli/issues/114。 正如他们在那里所说的那样,您可以在键入导入周围添加try / catch块 - 或者您可以使用Python的更新版本。