This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author sir-sigurd
Recipients docs@python, sir-sigurd
Date 2019-08-29.03:30:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1567049445.71.0.232910822835.issue37974@roundup.psfhosted.org>
In-reply-to
Content
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 shortest iterable in the argument sequence
 |  is exhausted and then it raises StopIteration.

This description is awkward and should use term 'iterator' as https://docs.python.org/3/library/functions.html#zip does.

The same applies to chain(), count() and zip_longest() from itertools.
History
Date User Action Args
2019-08-29 03:30:45sir-sigurdsetrecipients: + sir-sigurd, docs@python
2019-08-29 03:30:45sir-sigurdsetmessageid: <1567049445.71.0.232910822835.issue37974@roundup.psfhosted.org>
2019-08-29 03:30:45sir-sigurdlinkissue37974 messages
2019-08-29 03:30:45sir-sigurdcreate