diff options
author | Raymond Hettinger <python@rcn.com> | 2013-09-09 06:29:40 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2013-09-09 06:29:40 (GMT) |
commit | 8df58f7ae87a2debeae47813537d5c105bea6f38 (patch) | |
tree | 1df3710c7dfd36ad0ec89915710b123cd3033e06 /Modules | |
parent | c363a23eff25d8ee74de145be4f447602a5c1a29 (diff) | |
download | cpython-8df58f7ae87a2debeae47813537d5c105bea6f38.zip cpython-8df58f7ae87a2debeae47813537d5c105bea6f38.tar.gz cpython-8df58f7ae87a2debeae47813537d5c105bea6f38.tar.bz2 |
Issue 18752: Make chain.from_iterable() more visible in the documentation.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/itertoolsmodule.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c index 4bc9192..0123181 100644 --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -4,7 +4,7 @@ /* Itertools module written and maintained by Raymond D. Hettinger <python@rcn.com> - Copyright (c) 2003 Python Software Foundation. + Copyright (c) 2003-2013 Python Software Foundation. All rights reserved. */ @@ -4456,6 +4456,7 @@ repeat(elem [,n]) --> elem, elem, elem, ... endlessly or up to n times\n\ Iterators terminating on the shortest input sequence:\n\ accumulate(p[, func]) --> p0, p0+p1, p0+p1+p2\n\ chain(p, q, ...) --> p0, p1, ... plast, q0, q1, ... \n\ +chain.from_iterable([p, q, ...]) --> p0, p1, ... plast, q0, q1, ... \n\ compress(data, selectors) --> (d[0] if s[0]), (d[1] if s[1]), ...\n\ dropwhile(pred, seq) --> seq[n], seq[n+1], starting when pred fails\n\ groupby(iterable[, keyfunc]) --> sub-iterators grouped by value of keyfunc(v)\n\ |