Steven Bethard wrote: > This brings up the question of why the patch produces lists, not > tuples. What's the reasoning behind that? When dealing with an iterator, you don't know the length in advance, so the only way to get a tuple would be to produce a list first and then create a tuple from it. -- Greg