[issue7203] fixer for map(None, ...) needs to consider multi-argument case

Florian Mayer report at bugs.python.org
Tue Oct 27 21:43:36 CET 2009


Florian Mayer <flormayer at aim.com> added the comment:

At least converting

map(None, a, b, ...)

to

map(lambda *xs: xs, a, b, ...)

I can understand if you prefer not to add the itertools.zip_longest
workaround, although that would be the correct translation, of course.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue7203>
_______________________________________


More information about the Python-bugs-list mailing list