On Apr 26, 2014 8:12 AM, "Ned Batchelder" <n...@nedbatchelder.com> wrote: > Looking at your code, I see: > > > tplArgs = map(None, lstVarNames, args) > > I didn't realize map accepted a callable of None (TIL!), but it no longer does in Python 3. You'll have to do this a different way.
The Python 3 replacement for map(None, ...) is itertools.zip_longest.
-- https://mail.python.org/mailman/listinfo/python-list