[Python-checkins] cpython (3.4): Issue #23049: Pure python equivalent shouldn't imply more exactitude than is

raymond.hettinger python-checkins at python.org
Wed Dec 17 03:17:25 CET 2014


https://hg.python.org/cpython/rev/0b3d69f15950
changeset:   93914:0b3d69f15950
branch:      3.4
parent:      93910:fed774c926f5
user:        Raymond Hettinger <python at rcn.com>
date:        Tue Dec 16 18:16:57 2014 -0800
summary:
  Issue #23049:  Pure python equivalent shouldn't imply more exactitude than is really there.

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