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 methane
Recipients gvanrossum, methane, python-dev, socketpair, terry.reedy, yselivanov
Date 2016-10-25.13:39:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1477402776.95.0.782866802377.issue28430@psf.upfronthosting.co.za>
In-reply-to
Content
I'm sorry about my bad English.

> Fix iterator of C implemented asyncio.Future

This meant:

fut = asyncio.Future()  # C implemented version of asyncio.Future
it = iter(fut)  # Iterator of it
it.send(42)     # raised TypeError before. It was not compatible with Python version of asyncio.Future
History
Date User Action Args
2016-10-25 13:39:36methanesetrecipients: + methane, gvanrossum, terry.reedy, socketpair, python-dev, yselivanov
2016-10-25 13:39:36methanesetmessageid: <1477402776.95.0.782866802377.issue28430@psf.upfronthosting.co.za>
2016-10-25 13:39:36methanelinkissue28430 messages
2016-10-25 13:39:36methanecreate