Message 76862 - Python tracker
Message76862
| Author | terry.reedy |
|---|---|
| Recipients | georg.brandl, terry.reedy |
| Date | 2008-12-04.01:52:42 |
| SpamBayes Score | 0.021596236 |
| Marked as misclassified | No |
| Message-id | <1228355563.66.0.943103489594.issue4513@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
>>> 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. |
|
| History | |||
|---|---|---|---|
| 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: <1228355563.66.0.943103489594.issue4513@psf.upfronthosting.co.za> |
| 2008-12-04 01:52:42 | terry.reedy | link | issue4513 messages |
| 2008-12-04 01:52:42 | terry.reedy | create | |