diff options
author | Raymond Hettinger <python@rcn.com> | 2014-12-17 02:17:18 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2014-12-17 02:17:18 (GMT) |
commit | 3339f68141066aba266b48c545b62f452908695f (patch) | |
tree | ebc36c85778290ca891e0edb6f4745a0b6be599d /Doc | |
parent | fc6fdb112d46d9d7798c57f7347154234ca2b9a4 (diff) | |
parent | 558dcf38e642afbf7670bad00e3eb7e3d40cc59c (diff) | |
download | cpython-3339f68141066aba266b48c545b62f452908695f.zip cpython-3339f68141066aba266b48c545b62f452908695f.tar.gz cpython-3339f68141066aba266b48c545b62f452908695f.tar.bz2 |
merge
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/functools.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst index d87fa58..46aa887 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) |