[New-bugs-announce] [issue4513] Finish updating zip docstring

Terry J. Reedy report at bugs.python.org
Thu Dec 4 02:52:43 CET 2008


New submission from Terry J. Reedy <tjreedy at udel.edu>:

>>> 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.

----------
assignee: georg.brandl
components: Documentation
messages: 76862
nosy: georg.brandl, tjreedy
severity: normal
status: open
title: Finish updating zip docstring
versions: Python 3.0

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue4513>
_______________________________________


More information about the New-bugs-announce mailing list