Nick Coghlan wrote:
Oh, and under such a proposal, the generator expression:
(x for x in seq)
would be semantically equivalent to:
(: yield x for x in ?)(seq)
I don't follow that, since 'yield x for x in y' is not
currently a legal expression.
--
Greg