[issue5790] itertools.izip python code has a typo

2009-04-20 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks for the report. Fixed in r71770 and r71771. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue5790] itertools.izip python code has a typo

2009-04-18 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: georg.brandl -> rhettinger nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list ma

[issue5790] itertools.izip python code has a typo

2009-04-18 Thread Steven D'Aprano
New submission from Steven D'Aprano : In the documentation for itertools, the Python equivalent to izip has a typo: yield yield tuple(map(next, iterables)) Obviously should only have a single yield. http://docs.python.org/library/itertools.html#itertools.izip -- assignee: georg.brand