This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author sbstp
Recipients gvanrossum, sbstp, vstinner, yselivanov
Date 2016-02-20.22:50:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1456008629.58.0.297729770488.issue26395@psf.upfronthosting.co.za>
In-reply-to
Content
I want to receive data on a UDP socket that was bound, without blocking the event loop. I've looked through the asyncio docs, and I haven't found a way of doing that using the coroutine API (yield from/await).

There is a sock_recv method on BaseEventLoop which is a coroutine, it seems like sock_recvfrom was never implemented.

I don't have a patch for this right now, I wanted to know what people thought of adding support for this.
History
Date User Action Args
2016-02-20 22:50:29sbstpsetrecipients: + sbstp, gvanrossum, vstinner, yselivanov
2016-02-20 22:50:29sbstpsetmessageid: <1456008629.58.0.297729770488.issue26395@psf.upfronthosting.co.za>
2016-02-20 22:50:29sbstplinkissue26395 messages
2016-02-20 22:50:29sbstpcreate