This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients Rosuav, gvanrossum, python-dev, r.david.murray, schlamar, serhiy.storchaka
Date 2014-11-21.18:26:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1416594375.38.0.525330218147.issue22906@psf.upfronthosting.co.za>
In-reply-to
Content
I suggest to apply right now those changes which are compatible with current behavior and don't make code more cumbersome. E.g.

-        while True:
-            yield next(line_pair_iterator)
+        yield from line_pair_iterator

and

-        raise StopIteration
+        return

To me these changes make code even better and are worth to be applied even if PEP 479 will be rejected.
History
Date User Action Args
2014-11-21 18:26:15serhiy.storchakasetrecipients: + serhiy.storchaka, gvanrossum, r.david.murray, python-dev, schlamar, Rosuav
2014-11-21 18:26:15serhiy.storchakasetmessageid: <1416594375.38.0.525330218147.issue22906@psf.upfronthosting.co.za>
2014-11-21 18:26:15serhiy.storchakalinkissue22906 messages
2014-11-21 18:26:15serhiy.storchakacreate