Re: iterators and continuing after a StopIteration

2010-08-07 Thread MRAB
Roald de Vries wrote: Hi all, I have a list that I'm iterating over, and during the iteration items are appended. Moreover, it is iterated over in two nested loops. If the inner loop comes to the end, I want the outer loop to append an item. Is there a way to do this? Because once an iterato

iterators and continuing after a StopIteration

2010-08-07 Thread Roald de Vries
Hi all, I have a list that I'm iterating over, and during the iteration items are appended. Moreover, it is iterated over in two nested loops. If the inner loop comes to the end, I want the outer loop to append an item. Is there a way to do this? Because once an iterator has raised a Sto