> It should be
> 
>   sum(*operands)
> 
> not
> 
>   sum(operands, initialvalue=?)
> 
> It should amount to "map(+, operands)".

Or, to be pedantic, this:

     reduce(lambda x, y: x.__add__(y), operands)


Joel

_______________________________________________
Python-3000 mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000
Unsubscribe: 
http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com

Reply via email to