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 qwjqwj
Recipients pitrou, qwjqwj
Date 2009-03-27.16:14:44
SpamBayes Score 0.006137733
Marked as misclassified No
Message-id <1238170485.6.0.588215034952.issue5577@psf.upfronthosting.co.za>
In-reply-to
Content
>>> x = {(yield i) for i in range(10)}
>>> x
<generator object <setcomp> at 0x02A453F0>
>>> list(x)
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, {None}]
History
Date User Action Args
2009-03-27 16:14:45qwjqwjsetrecipients: + qwjqwj, pitrou
2009-03-27 16:14:45qwjqwjsetmessageid: <1238170485.6.0.588215034952.issue5577@psf.upfronthosting.co.za>
2009-03-27 16:14:44qwjqwjlinkissue5577 messages
2009-03-27 16:14:44qwjqwjcreate