Steven D'Aprano <st...@remove-this-cybersource.com.au> writes: > * Iterating over an arbitrary sequence of arbitrary sequences? > Use itertools.chain.
chain is only for finite sequences. For arbitrary sequences, use chain.from_iterable. -- http://mail.python.org/mailman/listinfo/python-list