Giovanni Bajo wrote: > for i,(x,y) in enumerate(izip(iter1, iter2)): > ... > > must be translated to: > > for (i,x in enumerate(iter1), y in iter2):
Maybe the functionality of enumerate() could be incorporated into the syntax as well. for (i in *, x in iter1, y in iter2): ... -- Greg _______________________________________________ Python-3000 mailing list Python-3000@python.org http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com