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 Jeremy Bustamante
Recipients Jeremy Bustamante, gvanrossum, yselivanov
Date 2017-01-22.14:09:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1485094185.41.0.725056014669.issue29344@psf.upfronthosting.co.za>
In-reply-to
Content
Documemtation says sock_recv is a coroutine
https://docs.python.org/3.6/library/asyncio-eventloop.html#low-level-socket-operations

But following code says it isnt:

import asyncio
loop = asyncio.get_event_loop()

asyncio.iscoroutinefunction(loop.sock_recv)
False

asyncio.iscoroutine(loop.sock_recv)
False
History
Date User Action Args
2017-01-22 14:09:45Jeremy Bustamantesetrecipients: + Jeremy Bustamante, gvanrossum, yselivanov
2017-01-22 14:09:45Jeremy Bustamantesetmessageid: <1485094185.41.0.725056014669.issue29344@psf.upfronthosting.co.za>
2017-01-22 14:09:45Jeremy Bustamantelinkissue29344 messages
2017-01-22 14:09:45Jeremy Bustamantecreate