Giovanni Bajo wrote: > And what about the ambiguity in parsing: > > for (x in iter1,y,z in iter2): > ... It would probably be necessary to require some parens there, e.g. for (x in iter1, (y,z) in iter2): ... -- Greg