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 Sasha.Ovsankin
Recipients Sasha.Ovsankin
Date 2014-05-29.16:20:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1401380410.21.0.601003685212.issue21607@psf.upfronthosting.co.za>
In-reply-to
Content
Python 3.4.0 (default, May 20 2014, 20:42:24)
[GCC 4.2.1 Compatible Apple LLVM 5.1 (clang-503.0.40)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> zip([1, 2, 3], ["a", "b", "c"])
<zip object at 0x1017c79c8>
>>>


Python 2.7.5 (default, Mar  9 2014, 22:15:05)
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> zip([1, 2, 3], ["a", "b", "c"])
[(1, 'a'), (2, 'b'), (3, 'c')]
History
Date User Action Args
2014-05-29 16:20:10Sasha.Ovsankinsetrecipients: + Sasha.Ovsankin
2014-05-29 16:20:10Sasha.Ovsankinsetmessageid: <1401380410.21.0.601003685212.issue21607@psf.upfronthosting.co.za>
2014-05-29 16:20:09Sasha.Ovsankinlinkissue21607 messages
2014-05-29 16:20:07Sasha.Ovsankincreate