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, ncoghlan, python-dev, scoder, yselivanov
Date 2015-05-29.17:26:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1432920376.88.0.280937029273.issue24316@psf.upfronthosting.co.za>
In-reply-to
Content
One failing test in "test_coroutines": test_func_5. The reason is that the GeneratorWrapper is not iterable (and there is no reason it shouldn't be, given that it wraps a Generator). That was my fault, I had already added an __iter__ method but didn't copy it in my previous message. Adding it as follows fixes the test for me:

    def __iter__(self):
        return self.__wrapped__

Alternatively, "__iter__ = __await__" would do the same.
History
Date User Action Args
2015-05-29 17:26:16scodersetrecipients: + scoder, gvanrossum, ncoghlan, python-dev, yselivanov
2015-05-29 17:26:16scodersetmessageid: <1432920376.88.0.280937029273.issue24316@psf.upfronthosting.co.za>
2015-05-29 17:26:16scoderlinkissue24316 messages
2015-05-29 17:26:16scodercreate