在Python2.7中成功使用Gevent之后,我试图在Python3.4中安装和使用Gevent。但是使用Python 3我在导入时遇到错误。是否仍然在python3中支持它 使用gcc 4.9并使用pip3 install gevent安装。
import gevent
File "/usr/local/lib/python3.4/dist-packages/gevent/__init__.py", line 41, in <module>
from gevent.hub import get_hub, iwait, wait
File "/usr/local/lib/python3.4/dist-packages/gevent/hub.py", line 289
except Exception, ex:
答案 0 :(得分:0)
var toolbarItems = self.toolbar.items
let newItem = UIBarButtonItem(barButtonSystemItem: .Play, target: self, action: "play")
toolbarItems![1] = newItem
self.toolbar.setItems(toolbarItems, animated: true)
是Python 2语法,它应该是Python 3中的except Exception, ex
。看起来Gevent包确实没有为Python 3做好准备。