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.

作者 terry.reedy
收信人 georg.brandl, terry.reedy
日期 2008-12-04.01:52:42
SpamBayes Score 0.021596236
Marked as misclassified
Message-id <1228355563.66.0.943103489594.issue4513@psf.upfronthosting.co.za>
In-reply-to
内容
>>> 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.
历史
日期 用户 动作 参数
2008-12-04 01:52:43terry.reedy修改recipients: + terry.reedy, georg.brandl
2008-12-04 01:52:43terry.reedy修改messageid: <1228355563.66.0.943103489594.issue4513@psf.upfronthosting.co.za>
2008-12-04 01:52:42terry.reedy链接issue4513 messages
2008-12-04 01:52:42terry.reedy创建