2015-02-26 16:49 GMT+01:00 Antoine Pitrou <[email protected]>: > What is your use case?
See the code at the end of my message:
while True:
data, addr = sock.recvfrom()
...
I expect a similar syntax using asyncio:
while True:
data, addr = yield from sock.recvfrom()
...
Victor
