Steve Holden wrote:
What about extending the syntax somewhat to

  yield expr for x from X

I can't see much advantage that would give you
over writing

  for x in X:
    yield expr

There would be little or no speed advantage,
since you would no longer be able to shortcut
the intermediate generator during next().

--
Greg
_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to