On 12/23/06, Russell Keith-Magee <[EMAIL PROTECTED]> wrote: ...
Same result, different composition. Personally, given Guido's predisposition to eliminating reduce() in Python 3000 [1], I'd be avoiding using reduce in new code.
A python implementation of reduce: NOT_GIVEN="(*piuhuI&*uyobJH!ikuoi1p9e;mks c0p[p" def reduce_(f,s,i=NOT_GIVEN): it=iter(s) if i == NOT_GIVEN: try: result = it.next() except StopIteration: raise TypeError, "reduce() of empty sequence with no initial value" else: result = i for i in it: result = f(result,i) return result --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---