[issue37974] zip() docstring should say 'iterator' instead of 'object with __next__()'

2019-08-29 Thread Raymond Hettinger
Raymond Hettinger added the comment: This looks fine to me. -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___

[issue37974] zip() docstring should say 'iterator' instead of 'object with __next__()'

2019-08-29 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +rhettinger type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue37974] zip() docstring should say 'iterator' instead of 'object with __next__()'

2019-08-28 Thread Sergey Fedoseev
New submission from Sergey Fedoseev : In [3]: help(zip) class zip(object) | zip(*iterables) --> zip object | | Return a zip object whose .__next__() method returns a tuple where | the i-th element comes from the i-th iterable argument. The .__next__() | method continues until the sh