7 May
2020
7 May
'20
7:04 a.m.
On Thu, 7 May 2020 at 01:07, Christopher Barker <pythonchb@gmail.com> wrote:
3) Add a ternary mode flag to zip zip(*iters, mode = ('shortest' | 'equal' | 'longest'), fillvalue=None)
You missed itertools.zip_longest(*iters, fillvalue=None) from this one. Unless you're proposing to drop itertools.zip_longest, the fact that there's now two ways to do zip_longest seems like an important wart to point out for this proposal. For me: +0.1 on a new function in itertools +0 on no change -1 on the remainder Paul