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 terry.reedy
Recipients georg.brandl, terry.reedy
Date 2008-12-04.01:52:42
SpamBayes Score 0.021596236
Marked as misclassified No
Message-id <1228355563.66.0.943103489594.issue4513@psf.upfronthosting.co.za>
In-reply-to
Content
>>> help(zip) #3.0

class zip(object)
 |  zip(iter1 [,iter2 [...]]) --> zip object
 |  
 |  Return a zip object whose .__next__() method ... StopIteration.  

 | Works like the zip()
 |  function but consumes less memory by returning an iterator instead of
 |  a list.

The last sentence is left over from when 3.0 zip was itertools.izip.
Just delete it.
History
Date User Action Args
2008-12-04 01:52:43terry.reedysetrecipients: + terry.reedy, georg.brandl
2008-12-04 01:52:43terry.reedysetmessageid: <1228355563.66.0.943103489594.issue4513@psf.upfronthosting.co.za>
2008-12-04 01:52:42terry.reedylinkissue4513 messages
2008-12-04 01:52:42terry.reedycreate