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 vstinner
Recipients doerwalter, ezio.melotti, fdrake, martin.panter, pitrou, serhiy.storchaka, vstinner
Date 2017-12-19.01:00:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1513645215.12.0.213398074469.issue19100@psf.upfronthosting.co.za>
In-reply-to
Content
$ LANG= ./python -c "import pprint; pprint.pprint('\u20ac')"

Thanks to the PEP 538 and PEP 540, this command now works as expected in Python 3.7:

vstinner@apu$ LANG= python3.7 -c "import pprint; pprint.pprint('\u20ac')"
'€'

Do we still need pprint_unencodable_2.patch workaround?
History
Date User Action Args
2017-12-19 01:00:15vstinnersetrecipients: + vstinner, fdrake, doerwalter, pitrou, ezio.melotti, martin.panter, serhiy.storchaka
2017-12-19 01:00:15vstinnersetmessageid: <1513645215.12.0.213398074469.issue19100@psf.upfronthosting.co.za>
2017-12-19 01:00:15vstinnerlinkissue19100 messages
2017-12-19 01:00:15vstinnercreate