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 serhiy.storchaka
Recipients doerwalter, ezio.melotti, fdrake, pitrou, serhiy.storchaka
Date 2013-12-11.15:07:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1386774422.0.0.170498744043.issue19100@psf.upfronthosting.co.za>
In-reply-to
Content
pprint is not print.

>>> print('\u20ac')
€
>>> import pprint; pprint.pprint('\u20ac')
'€'

Default sys.displayhook doesn't fail on unencodable output.

$ LANG=C ./python
Python 3.4.0b1 (default:e961a166dc70+, Dec 11 2013, 13:57:17) 
[GCC 4.6.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> '\u20ac'
'\u20ac'
History
Date User Action Args
2013-12-11 15:07:02serhiy.storchakasetrecipients: + serhiy.storchaka, fdrake, doerwalter, pitrou, ezio.melotti
2013-12-11 15:07:01serhiy.storchakasetmessageid: <1386774422.0.0.170498744043.issue19100@psf.upfronthosting.co.za>
2013-12-11 15:07:01serhiy.storchakalinkissue19100 messages
2013-12-11 15:07:01serhiy.storchakacreate