我在 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'