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 belopolsky
Recipients belopolsky, docs@python, loewis, max, rhettinger, stutzbach
Date 2010-10-05.18:57:37
SpamBayes Score 0.07301141
Marked as misclassified No
Message-id <1286305059.73.0.576255335527.issue10029@psf.upfronthosting.co.za>
In-reply-to
Content
Note that the following variant where maps are replaced with list comprehensions seems to work:

def zip(*iterables):
    # zip('ABCD', 'xy') --> Ax By                                                                                                                                                      
    iterables = [iter(i) for i in iterables]
    while iterables:
	yield tuple([next(j) for j in iterables])
History
Date User Action Args
2010-10-05 18:57:39belopolskysetrecipients: + belopolsky, loewis, rhettinger, stutzbach, docs@python, max
2010-10-05 18:57:39belopolskysetmessageid: <1286305059.73.0.576255335527.issue10029@psf.upfronthosting.co.za>
2010-10-05 18:57:37belopolskylinkissue10029 messages
2010-10-05 18:57:37belopolskycreate