George Sakkis wrote:

> Short answer: it doesn't. Only if you actually use the new API it matters, 
> e.g.
> 
> for var in Iter(it1) + Iter(it2):

Which doesn't look any more readable to me than

   for var in chain(it1, it2):

In fact, it looks considerably *less* readable.

--
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

Reply via email to