[Python-3000] Python 3000 Status Update (Long!)

Joel Bender jjb5 at cornell.edu
Thu Jun 21 19:32:42 CEST 2007


> 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



More information about the Python-3000 mailing list