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 gvanrossum, lukasz.langa, martin.panter, pitrou, rhettinger, scoder, vstinner, yselivanov
Date 2015-04-24.16:54:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1429894475.1.0.701034902549.issue24018@psf.upfronthosting.co.za>
In-reply-to
Content
Searching for Python code that seems to implement the Generator protocol doesn't return much:

https://code.openhub.net/search?s=%22def%20throw%28%22%20%22def%20send%28%22%20%22def%20close%28%22&pp=0&fl=Python&mp=1&ml=1&me=1&md=1&ff=1&filterChecked=true

But at least it pointed me to this:

https://hg.python.org/cpython/file/5c0247a6f98a/Lib/multiprocessing/managers.py#l922

So, wrapping generators (apparently for remote calls in this case) seems to be another use case.
History
Date User Action Args
2015-04-24 16:54:35scodersetrecipients: + scoder, gvanrossum, rhettinger, pitrou, vstinner, lukasz.langa, martin.panter, yselivanov
2015-04-24 16:54:35scodersetmessageid: <1429894475.1.0.701034902549.issue24018@psf.upfronthosting.co.za>
2015-04-24 16:54:35scoderlinkissue24018 messages
2015-04-24 16:54:34scodercreate