Message82630
Georg, you're right, there's a StopIteration to catch. My thinko was
mistaking the function for a generator where the exception propagation
would have done the right thing. The amended version now becomes
next(b)
for x, y in zip(a, b): yield x, y
...which is not that attractive anymore, also because it's slower. Sorry
for the error. |
|
| Date |
User |
Action |
Args |
| 2009-02-23 13:58:33 | della | set | recipients:
+ della, georg.brandl, rhettinger |
| 2009-02-23 13:58:33 | della | set | messageid: <[email protected]> |
| 2009-02-23 13:58:29 | della | link | issue5350 messages |
| 2009-02-23 13:58:28 | della | create | |
|