Message231487
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. |
|
| Date |
User |
Action |
Args |
| 2014-11-21 18:26:15 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, gvanrossum, r.david.murray, python-dev, schlamar, Rosuav |
| 2014-11-21 18:26:15 | serhiy.storchaka | set | messageid: <[email protected]> |
| 2014-11-21 18:26:15 | serhiy.storchaka | link | issue22906 messages |
| 2014-11-21 18:26:15 | serhiy.storchaka | create | |
|