summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-01-24 23:34:34 (GMT)
committerGeorg Brandl <georg@python.org>2008-01-24 23:34:34 (GMT)
commitb2673840987b4553bffe3591b3efb25c960521e6 (patch)
tree5e1063a5006387eac1205772e7aa31a2f7b5ab52 /Doc/library
parente7a15bb808f2118920fed0b5949f821940cf7416 (diff)
downloadcpython-b2673840987b4553bffe3591b3efb25c960521e6.zip
cpython-b2673840987b4553bffe3591b3efb25c960521e6.tar.gz
cpython-b2673840987b4553bffe3591b3efb25c960521e6.tar.bz2
Fix merge glitch.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/itertools.rst13
1 files changed, 0 insertions, 13 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst
index 80fe34d..a088683 100644
--- a/Doc/library/itertools.rst
+++ b/Doc/library/itertools.rst
@@ -259,22 +259,9 @@ loops that truncate the stream.
makes possible an idiom for clustering a data series into n-length groups
using ``izip(*[iter(s)]*n)``.
-<<<<<<< .working
- Note, when :func:`izip` is used with unequal length inputs, subsequent
- iteration over the longer iterables cannot reliably be continued after
- :func:`izip` terminates. Potentially, up to one entry will be missing from
- each of the left-over iterables. This occurs because a value is fetched from
- each iterator in- turn, but the process ends when one of the iterators
- terminates. This leaves the last fetched values in limbo (they cannot be
- returned in a final, incomplete tuple and they are cannot be pushed back into
- the iterator for retrieval with ``next(it)``). In general, :func:`izip`
- should only be used with unequal length inputs when you don't care about
- trailing, unmatched values from the longer iterables.
-=======
:func:`izip` should only be used with unequal length inputs when you don't
care about trailing, unmatched values from the longer iterables. If those
values are important, use :func:`izip_longest` instead.
->>>>>>> .merge-right.r60208
.. function:: izip_longest(*iterables[, fillvalue])