diff options
author | Raymond Hettinger <python@rcn.com> | 2013-09-09 01:55:07 -0500 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2013-09-09 01:55:07 -0500 |
commit | ee09458e08c61b78481dac7c3de670415dc9ec4a (patch) | |
tree | 6ee0fae83b3248870c5e49bf0794b9efb8280e7d | |
parent | 8df58f7ae87a2debeae47813537d5c105bea6f38 (diff) | |
parent | 1e21ebcc2ac1c74fbea6bbff0460227a90b8f594 (diff) | |
download | cpython-git-ee09458e08c61b78481dac7c3de670415dc9ec4a.tar.gz |
merge
-rw-r--r-- | Doc/library/itertools.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index aa793e26c5..25f34bff16 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -157,9 +157,8 @@ loops that truncate the stream. .. classmethod:: chain.from_iterable(iterable) Alternate constructor for :func:`chain`. Gets chained inputs from a - single iterable argument that is evaluated lazily. Equivalent to:: + single iterable argument that is evaluated lazily. Roughly equivalent to:: - @classmethod def from_iterable(iterables): # chain.from_iterable(['ABC', 'DEF']) --> A B C D E F for it in iterables: |