homepage

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

AltStyle によって変換されたページ (->オリジナル) /