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 vstinner
Recipients asvetlov, giampaolo.rodola, meilyadam, vstinner, yselivanov
Date 2018-09-14.19:32:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1536953540.59.0.956365154283.issue29883@psf.upfronthosting.co.za>
In-reply-to
Content
Copy of my messages in July 2014:
https://github.com/python/asyncio/issues/187

"""
ProcatorEventLoop doesn't support UDP right now.

I'm working on a patch. I need to implement WSARecvFrom in the _overlapped module for example.

ConnectEx() fails with an error 10022 when create_datagram_endpoint() is called with remote_address. A workaround is to replace "yield from sock_connect(sock, remote_address)" with "sock.connect(remote_address)".
"""
History
Date User Action Args
2018-09-14 19:32:20vstinnersetrecipients: + vstinner, giampaolo.rodola, asvetlov, yselivanov, meilyadam
2018-09-14 19:32:20vstinnersetmessageid: <1536953540.59.0.956365154283.issue29883@psf.upfronthosting.co.za>
2018-09-14 19:32:20vstinnerlinkissue29883 messages
2018-09-14 19:32:20vstinnercreate