INADA Naoki added the comment:

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

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue28430>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to