Kaydet (Commit) e76816b1 authored tarafından Raymond Hettinger's avatar Raymond Hettinger

Fix typo.

üst 36d816b0
...@@ -3921,7 +3921,7 @@ repeat(elem [,n]) --> elem, elem, elem, ... endlessly or up to n times\n\ ...@@ -3921,7 +3921,7 @@ repeat(elem [,n]) --> elem, elem, elem, ... endlessly or up to n times\n\
\n\ \n\
Iterators terminating on the shortest input sequence:\n\ Iterators terminating on the shortest input sequence:\n\
chain(p, q, ...) --> p0, p1, ... plast, q0, q1, ... \n\ chain(p, q, ...) --> p0, p1, ... plast, q0, q1, ... \n\
combine(data, selectors) --> (d[0] if s[0]), (d[1] if s[1]), ...\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\ 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\ groupby(iterable[, keyfunc]) --> sub-iterators grouped by value of keyfunc(v)\n\
ifilter(pred, seq) --> elements of seq where pred(elem) is True\n\ ifilter(pred, seq) --> elements of seq where pred(elem) is True\n\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment