vote up 3 vote down star
4

When I try to print a Unicode string in a windows console, I get a "UnicodeEncodeError: 'charmap' codec can't encode character ...." error. I assume this is because the Windows console does not accept Unicode-only characters. What's the best way around this? Is there any way I can make Python automatically print a "?" instead of failing in this situation?

Edit: I'm using Python 2.5.

flag

3 Answers

vote up 2 vote down check

Here is a page that details the problem and a solution (search the page for the text Wrapping sys.stdout into an instance):

PrintFails - Python Wiki

link|flag
vote up 2 vote down

The cause of your problem is NOT the Win console not willing to accept Unicode (as it does this since I guess Win2k by default). It is the default system encoding. Try this code and see what it gives you:

import sys
sys.getdefaultencoding()

if it says ascii, there's your cause ;-) You have to create a file called sitecustomize.py and put it under python path (I put it under /usr/lib/python2.5/site-packages, but that is differen on Win - it is c:\python\lib\site-packages or something), with the following contents:

import sys
sys.setdefaultencoding('utf-8')

and perhaps you might want to specify the encoding in your files as well:

# -*- coding: UTF-8 -*-
import sys,time

Edit: more info can be found in excellent the Dive into Python book

link|flag
setdefaultencoding() is nolonger in sys (as of v2.0 according to the module docs). – Jon Cage Nov 4 '08 at 15:53
hmmmm, strange... will look into it. – Bartosz Radaczyński Apr 9 at 21:07
I cannot prove it right now, but I know that I've used this trick on a later version - 2.5 on Windows. – Bartosz Radaczyński Apr 9 at 21:11
1  
OK, after quite a while I have found out that: "This function is only intended to be used by the site module implementation and, where needed, by sitecustomize. Once used by the site module, it is removed from the sys module’s namespace." – Bartosz Radaczyński May 30 at 20:43
vote up 0 vote down

What version of Python are you on? I've seen references that this was broken in 2.4.3 and fixed in 2.4.4.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.