Issue549662
Created on 2002年04月28日 01:32 by rhettinger, last changed 2022年04月10日 16:05 by admin. This issue is now closed.
Files |
File name |
Uploaded |
Description |
Edit |
iterzip.diff
|
rhettinger,
2002年04月28日 01:32
|
iterzip() patch |
Messages (2) |
msg39737 - (view) |
Author: Raymond Hettinger (rhettinger) * (Python committer) |
Date: 2002年04月28日 01:32 |
Fast, clean C implementation of iterzip().
def iterzip(*collections):
iterables = map(iter, collections)
while 1:
yield tuple([i.next() for i in iterables])
|
msg39738 - (view) |
Author: Raymond Hettinger (rhettinger) * (Python committer) |
Date: 2002年05月08日 07:54 |
Logged In: YES
user_id=80475
Closed due to lack of interest.
|
History
|
---|
Date |
User |
Action |
Args |
2022年04月10日 16:05:16 | admin | set | github: 36511 |
2002年04月28日 01:32:24 | rhettinger | create |