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.

Author jsizelove
Recipients georg.brandl, jsizelove
Date 2008-08-08.00:11:50
SpamBayes Score 7.108576e-05
Marked as misclassified No
Message-id <1218154313.32.0.167482410859.issue3522@psf.upfronthosting.co.za>
In-reply-to
Content
The zip() function is now a generator in Python 3.0.  There is an
example of using the zip() function in the Python 3.0 tutorial,
http://docs.python.org/dev/3.0/tutorial/datastructures.html.

When running the example, I got:

>>> mat = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
>>> zip(*mat)
<zip object at 0x70fc60>

I wrapped it in a call to list() to get the example output:

>>> list(zip(*mat))
[(1, 4, 7), (2, 5, 8), (3, 6, 9)]


The attached patch file contains this change.
History
Date User Action Args
2008-08-08 00:11:53jsizelovesetrecipients: + jsizelove, georg.brandl
2008-08-08 00:11:53jsizelovesetmessageid: <1218154313.32.0.167482410859.issue3522@psf.upfronthosting.co.za>
2008-08-08 00:11:52jsizelovelinkissue3522 messages
2008-08-08 00:11:51jsizelovecreate