Le mercredi 2 Mars 2005 21:32, Skip Montanaro a �crit�: > def f(): > � � yield from (x for x in gen1(arg)) > > Skip
This suggestion had been made in a previous posting and it has my preference :
def f():
yield from gen1(arg)
Regards
Francis
--
http://mail.python.org/mailman/listinfo/python-list
