以下方法在pubsub.py中定义,pubsub.py是site-package pubsub中的python文件。当我尝试使用它时,pycharm告诉我这是无效的语法,箭头指向' - >'。我不知道为什么我安装了pypubsub。
def getDefaultPublisher() -> Publisher:
"""
Get the Publisher instance created by default when this module
is imported. See the module doc for details about this instance.
"""
return _publisher
答案 0 :(得分:4)
您的Python版本不匹配。这个版本的PyPubSub需要Python3。 Python2的最新版本是PyPubSub 3.3.0
pip install PyPubSub==3.3.0