[issue1093] product function patch

2007-09-02 Thread Guido van Rossum
Guido van Rossum added the comment: Thanks, but no thanks; I was quickly dissuaded from the need for this. -- nosy: +gvanrossum resolution: -> rejected status: open -> closed __ Tracker <[EMAIL PROTECTED]> _

[issue1093] product function patch

2007-09-02 Thread Martin v. Löwis
Martin v. Löwis added the comment: -1. I doubt this is needed often enough to justify a builtin function. -- nosy: +loewis __ Tracker <[EMAIL PROTECTED]> __ ___

[issue1093] product function patch

2007-09-02 Thread Ryan Freckleton
New submission from Ryan Freckleton: This is a patch to implement a product() builtin function. It works behaves similarly to reduce(operator.mul,...) but is implemented in C. Tests and documentation are included in this patch. -- components: Documentation, Library (Lib), Tests files: p