Florian Mayer <florma...@aim.com> added the comment:

A full fix would be

list(map(fun, *zip(*itertools.zip_longest(a, b, ...))))

and if fun is None

list(map(lambda *xs: xs, *zip(*itertools.zip_longest(a, b, ...))))

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue7203>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to