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 scoder
Recipients Mark.Shannon, lukasz.langa, scoder, serhiy.storchaka, v2m, yselivanov
Date 2020-09-16.18:15:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1600280138.98.0.311160540791.issue41756@roundup.psfhosted.org>
In-reply-to
Content
I'm happy to see this moving forward.

Not convinved of the "PyIter_Send()" name, though. I don't consider this part of the iterator protocol. It's specific to generators and coroutines. Cython would probably guard its usage by "PyGen_CheckExact()" or "PyCoro_CheckExact()", and not use it for arbitrary iterators.

Since coroutines inherit the generator protocol more or less, I think "PyGen_Send()" is a more suitable name, better than "PyCoro_Send()".
History
Date User Action Args
2020-09-16 18:15:39scodersetrecipients: + scoder, lukasz.langa, Mark.Shannon, serhiy.storchaka, yselivanov, v2m
2020-09-16 18:15:38scodersetmessageid: <1600280138.98.0.311160540791.issue41756@roundup.psfhosted.org>
2020-09-16 18:15:38scoderlinkissue41756 messages
2020-09-16 18:15:38scodercreate