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 eric.araujo
Recipients akuchling, andybuckley, belopolsky, eric.araujo, ezio.melotti, georg.brandl, gvanrossum, r.david.murray, terry.reedy, twouters
Date 2010-09-14.18:05:05
SpamBayes Score 0.03270597
Marked as misclassified No
Message-id <1284487507.87.0.46127408256.issue2292@psf.upfronthosting.co.za>
In-reply-to
Content
Does

 yield *it

mean

 yield iter(tuple(it))

or

 for i in it:
     yield i
?
History
Date User Action Args
2010-09-14 18:05:08eric.araujosetrecipients: + eric.araujo, gvanrossum, twouters, akuchling, georg.brandl, terry.reedy, belopolsky, ezio.melotti, andybuckley, r.david.murray
2010-09-14 18:05:07eric.araujosetmessageid: <1284487507.87.0.46127408256.issue2292@psf.upfronthosting.co.za>
2010-09-14 18:05:05eric.araujolinkissue2292 messages
2010-09-14 18:05:05eric.araujocreate