From: Raymond Hettinger Date: Wed, 17 Dec 2014 02:16:57 +0000 (-0800) Subject: Issue #23049: Pure python equivalent shouldn't imply more exactitude than is really... X-Git-Tag: v3.4.3rc1~211 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=558dcf38e642afbf7670bad00e3eb7e3d40cc59c;p=thirdparty%2FPython%2Fcpython.git Issue #23049: Pure python equivalent shouldn't imply more exactitude than is really there. --- diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst index d87fa58dd702..46aa88767ea9 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)