Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fb92f39

Browse files
committed
Issue 18752: Make chain.from_iterable() more visible in the documentation.
1 parent 1e21ebc commit fb92f39

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

Doc/library/itertools.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ Iterator Arguments Results
4848
==================== ============================ ================================================= =============================================================
4949
:func:`accumulate` p [,func] p0, p0+p1, p0+p1+p2, ... ``accumulate([1,2,3,4,5]) --> 1 3 6 10 15``
5050
:func:`chain` p, q, ... p0, p1, ... plast, q0, q1, ... ``chain('ABC', 'DEF') --> A B C D E F``
51+
chain.from_iterable iterable p0, p1, ... plast, q0, q1, ... ``chain.from_iterable(['ABC', 'DEF']) --> A B C D E F``
5152
:func:`compress` data, selectors (d[0] if s[0]), (d[1] if s[1]), ... ``compress('ABCDEF', [1,0,1,0,1,1]) --> A C E F``
5253
:func:`dropwhile` pred, seq seq[n], seq[n+1], starting when pred fails ``dropwhile(lambda x: x<5, [1,4,6,4,1]) --> 6 4 1``
5354
:func:`filterfalse` pred, seq elements of seq where pred(elem) is False ``filterfalse(lambda x: x%2, range(10)) --> 0 2 4 6 8``

Modules/itertoolsmodule.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/* Itertools module written and maintained
66
by Raymond D. Hettinger <[email protected]>
7-
Copyright (c) 2003 Python Software Foundation.
7+
Copyright (c) 2003-2013 Python Software Foundation.
88
All rights reserved.
99
*/
1010

@@ -4456,6 +4456,7 @@ repeat(elem [,n]) --> elem, elem, elem, ... endlessly or up to n times\n\
44564456
Iterators terminating on the shortest input sequence:\n\
44574457
accumulate(p[, func]) --> p0, p0+p1, p0+p1+p2\n\
44584458
chain(p, q, ...) --> p0, p1, ... plast, q0, q1, ... \n\
4459+
chain.from_iterable([p, q, ...]) --> p0, p1, ... plast, q0, q1, ... \n\
44594460
compress(data, selectors) --> (d[0] if s[0]), (d[1] if s[1]), ...\n\
44604461
dropwhile(pred, seq) --> seq[n], seq[n+1], starting when pred fails\n\
44614462
groupby(iterable[, keyfunc]) --> sub-iterators grouped by value of keyfunc(v)\n\

0 commit comments

Comments
 (0)