Message76862
>>> 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. |
|
| Date |
User |
Action |
Args |
| 2008-12-04 01:52:43 | terry.reedy | set | recipients:
+ terry.reedy, georg.brandl |
| 2008-12-04 01:52:43 | terry.reedy | set | messageid: <[email protected]> |
| 2008-12-04 01:52:42 | terry.reedy | link | issue4513 messages |
| 2008-12-04 01:52:42 | terry.reedy | create | |
|