Closes #18220: expand itertools.islice docstring to 2 lines

This commit is contained in:
Andrew Kuchling 2013-06-22 19:20:54 -04:00
parent 446a39f78f
commit da30acf50b

View file

@ -1554,7 +1554,8 @@ static PyMethodDef islice_methods[] = {
}; };
PyDoc_STRVAR(islice_doc, PyDoc_STRVAR(islice_doc,
"islice(iterable, [start,] stop [, step]) --> islice object\n\ "islice(iterable, stop) --> islice object\n\
islice(iterable, start, stop[, step]) --> islice object\n\
\n\ \n\
Return an iterator whose next() method returns selected values from an\n\ Return an iterator whose next() method returns selected values from an\n\
iterable. If start is specified, will skip all preceding elements;\n\ iterable. If start is specified, will skip all preceding elements;\n\