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.smith
Recipients Stephen_Tucker, eric.smith, peter.otten
Date 2013-10-09.18:23:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1381343037.93.0.915520379614.issue19210@psf.upfronthosting.co.za>
In-reply-to
Content
This isn't strictly related to printing a tuple. It's the difference between str() and repr():

>>> print (u"äöü")      # uses str
äöü
>>> print repr(u"äöü")
u'\xe4\xf6\xfc'

When the tuple is printed, it uses the repr of its constituent parts.
History
Date User Action Args
2013-10-09 18:23:57eric.smithsetrecipients: + eric.smith, peter.otten, Stephen_Tucker
2013-10-09 18:23:57eric.smithsetmessageid: <1381343037.93.0.915520379614.issue19210@psf.upfronthosting.co.za>
2013-10-09 18:23:57eric.smithlinkissue19210 messages
2013-10-09 18:23:57eric.smithcreate