<p dir="ltr"><br>
On Apr 26, 2014 8:12 AM, "Ned Batchelder" <<a href="mailto:ned@nedbatchelder.com">ned@nedbatchelder.com</a>> wrote:<br>
> Looking at your code, I see:<br>
><br>
><br>
>     tplArgs = map(None, lstVarNames, args)<br>
><br>
> 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.</p>
<p dir="ltr">The Python 3 replacement for map(None, ...) is itertools.zip_longest.</p>