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 della
Recipients della, georg.brandl, rhettinger
Date 2009-02-23.13:58:28
SpamBayes Score 1.5557694e-05
Marked as misclassified No
Message-id <1235397513.18.0.144198920328.issue5350@psf.upfronthosting.co.za>
In-reply-to
Content
Georg, you're right, there's a StopIteration to catch. My thinko was
mistaking the function for a generator where the exception propagation
would have done the right thing. The amended version now becomes

next(b)
for x, y in zip(a, b): yield x, y

...which is not that attractive anymore, also because it's slower. Sorry
for the error.
History
Date User Action Args
2009-02-23 13:58:33dellasetrecipients: + della, georg.brandl, rhettinger
2009-02-23 13:58:33dellasetmessageid: <1235397513.18.0.144198920328.issue5350@psf.upfronthosting.co.za>
2009-02-23 13:58:29dellalinkissue5350 messages
2009-02-23 13:58:28dellacreate