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.araujo
Recipients Nam.Nguyen, eric.araujo, ezio.melotti, lemburg, liori, r.david.murray
Date 2011-09-05.16:10:46
SpamBayes Score 5.2959686e-09
Marked as misclassified No
Message-id <1315239047.25.0.24574642916.issue5876@psf.upfronthosting.co.za>
In-reply-to
Content
I think it’s not an implicit vs. explicit call problem, rather repr vs. str.

IIRC, in 2.x it is allowed that __str__ returns a unicode object, and str will convert it to a str.  To do that, it will use the default encoding, which is ASCII in 2.5+, so your example cannot work.

Ideas for work-arounds:
- write a displayhook (http://docs.python.org/dev/library/sys#sys.displayhook) that converts unicode objects using sys.stout.encoding
- for 2.6+, test if setting PYTHONIOENCODING changes soemthing
History
Date User Action Args
2011-09-05 16:10:47eric.araujosetrecipients: + eric.araujo, lemburg, ezio.melotti, r.david.murray, liori, Nam.Nguyen
2011-09-05 16:10:47eric.araujosetmessageid: <1315239047.25.0.24574642916.issue5876@psf.upfronthosting.co.za>
2011-09-05 16:10:46eric.araujolinkissue5876 messages
2011-09-05 16:10:46eric.araujocreate