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.

classification
Title: iterzip() implementation
Type: Stage:
Components: Interpreter Core Versions: Python 2.3
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: rhettinger
Priority: normal Keywords: patch

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:16adminsetgithub: 36511
2002-04-28 01:32:24rhettingercreate