Kapil Thangavelu wrote:
> return map( (lambda x,y:(x,y)), l1, l2)
You can replace this with
return map(None, l1, l2)
You can see why via
print map.__doc__
Cheers,
Nils
--
[EMAIL PROTECTED] | [EMAIL PROTECTED] (preferred)
[EMAIL PROTECTED] | [EMAIL PROTECTED]
_______________________________________________
Zope maillist - [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
** No cross posts or HTML encoding! **
(Related lists -
http://lists.zope.org/mailman/listinfo/zope-announce
http://lists.zope.org/mailman/listinfo/zope-dev )