This commit is contained in:
Raymond Hettinger 2014-12-16 18:17:18 -08:00
commit 3339f68141
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ The :mod:`functools` module defines the following functions:
a default when the sequence is empty. If *initializer* is not given and
*sequence* contains only one item, the first item is returned.
Equivalent to::
Roughly equivalent to::
def reduce(function, iterable, initializer=None):
it = iter(iterable)