我在python 3.4中有这个asyncio类:
class Type1:
def __init__(s,websocket,path,flds,MyId):
global TypeOnes
s.ws=websocket
s.pt=path
s.iId=flds
s.ID=MyId
s.cnt=0
TypeOnes[MyId]=s
s.Q=asyncio.Queue
@asyncio.coroutine
def handlerIn(s,rxed):
#yield from s.Q.put(rxed) # gave error missing positional 'item'
#yield from s.Q.put(item=rxed) # gave error missing positional 'self'
yield from s.Q.put(self=s.Q,item=rxed) # gave error TypeError: _consume_done_getters() missing 1 required positional argument: 'self'
调用HandlerIn时,我似乎无法调用Q.put,请参阅注释的代码以获取尝试和结果。
就好像自我没有被正确地插入
我在调试器中,并且已经检查了变量的内容:
(handlerIn)>>> s.Q
<class 'asyncio.queues.Queue'>
(handlerIn)>>> rxed
'Button'
答案 0 :(得分:2)
我认为问题在于您尚未创建asyncio.Queue
的实例。应该是
s.Q=asyncio.Queue()