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.
Created on 2008年12月04日 01:52 by terry.reedy, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg76862 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2008年12月04日 01:52 | |
>>> 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. |
|||
| msg76914 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2008年12月04日 18:28 | |
Fixed in r67529. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:42 | admin | set | github: 48763 |
| 2008年12月04日 18:28:46 | georg.brandl | set | status: open -> closed resolution: fixed messages: + msg76914 |
| 2008年12月04日 01:52:42 | terry.reedy | create | |