python报"TypeError: object of type 'Greenlet' has no len()"

Posted gangzi4321

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python报"TypeError: object of type 'Greenlet' has no len()"相关的知识,希望对你有一定的参考价值。

TypeError: object of type ‘Greenlet‘ has no len()

问题代码:

gevent.joinall(

gevent.spawn(func1),

gevent.spawn(func2),

gevent.spawn(func3),

)

应该为:

gevent.joinall([

gevent.spawn(func1),

gevent.spawn(func2),

gevent.spawn(func3),

])

总结:gevent.joinall()的参数应该为列表形式[ gevent.spawn(func1), gevent.spawn(func2), gevent.spawn(func3),]

以上是关于python报"TypeError: object of type 'Greenlet' has no len()"的主要内容,如果未能解决你的问题,请参考以下文章

jS Ajax 上传文件报错"Uncaught TypeError: Illegal invocation"

Ajax方式上传文件报错"Uncaught TypeError: Illegal invocation"

element-ui时间控件报错:TypeError: date.getHours is not a function"TypeError: date.getFullYear is not

Scipy hstack 导致“TypeError:类型不支持转换:(dtype('float64'),dtype('O'))”

python中set的使用

实现bootstrap下的模态窗口功能时手动显示和隐藏窗口报错TypeError $(...).modal is not a function