New submission from Terry J. Reedy <[EMAIL PROTECTED]>:

>>> 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 <[EMAIL PROTECTED]>
<http://bugs.python.org/issue4513>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to