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 lemburg
Recipients Nam.Nguyen, arigo, eric.araujo, ezio.melotti, lemburg, liori, r.david.murray, serhiy.storchaka, vstinner
Date 2013-08-23.18:15:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1377281707.71.0.469052204658.issue5876@psf.upfronthosting.co.za>
In-reply-to
Content
.__repr__() is not really allowed to return Unicode objects in Python 2.x. If you do this, you're on your own. The CPython internals try to convert any non-str object to a str object, but this is only done to assure that PyObject_Repr() always returns a str object.

I'd suggest closing this as won't fix.
History
Date User Action Args
2013-08-23 18:15:07lemburgsetrecipients: + lemburg, arigo, vstinner, ezio.melotti, eric.araujo, r.david.murray, liori, Nam.Nguyen, serhiy.storchaka
2013-08-23 18:15:07lemburgsetmessageid: <1377281707.71.0.469052204658.issue5876@psf.upfronthosting.co.za>
2013-08-23 18:15:07lemburglinkissue5876 messages
2013-08-23 18:15:07lemburgcreate