[Python-checkins] cpython (merge 3.4 -> default): merge
raymond.hettinger
python-checkins at python.org
Wed Dec 17 03:17:25 CET 2014
https://hg.python.org/cpython/rev/56f71f02206e
changeset: 93915:56f71f02206e
parent: 93913:1e985daa7be6
parent: 93914:0b3d69f15950
user: Raymond Hettinger <python at rcn.com>
date: Tue Dec 16 18:17:18 2014 -0800
summary:
merge
files:
Doc/library/functools.rst | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst
--- a/Doc/library/functools.rst
+++ b/Doc/library/functools.rst
@@ -250,7 +250,7 @@
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)
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list