[issue18220] Expand itertools.islice docstring signature to 2 lines

2013-06-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7ecca1a98220 by Andrew Kuchling in branch '3.3': Closes #18220: expand itertools.islice docstring to 2 lines http://hg.python.org/cpython/rev/7ecca1a98220 -- nosy: +python-dev resolution: -> fixed stage: patch review -> committed/rejected s

[issue18220] Expand itertools.islice docstring signature to 2 lines

2013-06-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: The problem with all of range, slice, and islice is that [start,] stop [, step] is an impossible signature and needed to be changed. The actual signature is start_or_stop, [stop, [step]] with customized processing to interpret start_or_stop according to the pre