Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'python': 0.08; 'encoding:': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:80.91.229.12': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'received:lo.gmane.org': 0.09; 'utf-8': 0.09; 'variable': 0.21; 'subject:problem': 0.22; 'wrote': 0.22; 'least': 0.30; 'i/o': 0.30; 'environment': 0.30; 'header:X -Complaints-To:1': 0.32; 'to:addr:python-list': 0.33; 'force': 0.34; 'there': 0.35; 'change': 0.37; 'received:org': 0.38; 'subject:: ': 0.38; 'header:Mime-Version:1': 0.39; 'to:addr:python.org': 0.39; 'skip:n 40': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: "Mark Tolonen" Subject: Re: the stupid encoding problem to stdout Date: Thu, 9 Jun 2011 17:57:03 -0700 References: <4df02e04$0$1779$a729d347@news.telepac.pt> <4df137a7$0$30580$a729d347@news.telepac.pt> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="utf-8"; reply-type=original Content-Transfer-Encoding: 8bit X-Gmane-NNTP-Posting-Host: c-67-189-99-135.hsd1.wa.comcast.net X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6090 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 15 NNTP-Posting-Host: 82.94.164.166 X-Trace: 1307667431 news.xs4all.nl 49177 [::ffff:82.94.164.166]:32810 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:7334 "Sérgio Monteiro Basto" wrote in message news:4df137a7$0$30580$a729d347@news.telepac.pt... > How I change sys.stdout.encoding always to UTF-8 ? at least have a > consistent sys.stdout.encoding There is an environment variable that can force Python I/O to be a specfic encoding: PYTHONIOENCODING=utf-8 -Mark