diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst index d87fa58dd70..46aa88767ea 100644 --- a/Doc/library/functools.rst +++ b/Doc/library/functools.rst @@ -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)