[issue5081] Unable to print Unicode characters in Python 3 on Windows

2009-01-27 Thread Martin v. Löwis
Martin v. Löwis 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

[issue5081] Unable to print Unicode characters in Python 3 on Windows

2009-01-27 Thread Giampaolo Rodola'
New submission from Giampaolo Rodola' : While trying to port pyftpdlib to Python 3.x I noticed that Python 3.0 has a serious issue since unable to print certain unicode characters on stdout: Python 3.0 (r30:67507, Dec 3 2008, 20:14:27) [MSC v.1500 32 bit (Intel)] on win 32 Type "help", "copyrig