Martin v. Löwis <mar...@v.loewis.de> added the comment: Your 2.6 example is incorrect. Try
py> print u'\u20ac' If you want the 3.0 equivalent of your 2.6 code: it is py> print(r'\u20ac') \u20ac Closing this as "works for me". ---------- nosy: +loewis resolution: -> works for me status: open -> closed _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue5081> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com