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 eric.snow
Recipients Sasha.Ovsankin, SilentGhost, eric.snow
Date 2014-05-29.16:38:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1401381533.26.0.0146983524721.issue21607@psf.upfronthosting.co.za>
In-reply-to
Content
It may be the correct behavior but that doesn't mean we cannot update the repr to be more informative.  We've already done that for a number of types that previously used the default __repr__() implementation.  So in the case, how hard would it be to have the following repr?

>>> zip([1, 2, 3], ["a", "b", "c"])
zip([1, 2, 3], ["a", "b", "c"])
History
Date User Action Args
2014-05-29 16:38:53eric.snowsetrecipients: + eric.snow, SilentGhost, Sasha.Ovsankin
2014-05-29 16:38:53eric.snowsetmessageid: <1401381533.26.0.0146983524721.issue21607@psf.upfronthosting.co.za>
2014-05-29 16:38:53eric.snowlinkissue21607 messages
2014-05-29 16:38:52eric.snowcreate