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

Bill Janssen janssen at parc.com
Thu Jun 21 22:21:10 CEST 2007


> > It should amount to "map(+, operands)".
> 
> Or, to be pedantic, this:
> 
>      reduce(lambda x, y: x.__add__(y), operands)

Don't you mean:

   reduce(lambda x, y:  x.__add__(y), operands[1:], operands[0])

Bill


More information about the Python-3000 mailing list