Eventlet引发无法识别的异常

2024-06-23 19:36:41 发布

您现在位置:Python中文网/ 问答频道 /正文

我使用的是Eventlet的示例代码:http://eventlet.net/doc/examples.html#producer-consumer-recursive-web-crawler

运行中途,我遇到了以下多个实例:

Traceback (most recent call last):
  File "/usr/local/lib/python2.6/dist-packages/eventlet-0.9.9-py2.6.egg/eventlet/hubs/hub.py", line 285, in fire_timers
    timer()
  File "/usr/local/lib/python2.6/dist-packages/eventlet-0.9.9-py2.6.egg/eventlet/hubs/timer.py", line 56, in __call__
    cb(*args, **kw)
TypeError: exceptions must be classes, or instances, not bool

Tags: inpyegglibpackagesusrlocaldist

热门问题