Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Peter Otten <__peter__@web.de> Newsgroups: comp.lang.python Subject: Re: Processing text data with different encodings Date: Tue, 28 Jun 2016 13:31:08 +0200 Organization: None Lines: 77 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8Bit X-Trace: news.uni-berlin.de GSeqGZAeILYeUJLxsDSREQtRdIHchiUkk/FrtzDrKlUw== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'subject:text': 0.04; 'encoded': 0.05; 'python3': 0.05; 'bytes.': 0.07; 'interpreted': 0.07; 'utf-8': 0.07; '8bit%:30': 0.09; 'encoding.': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'script,': 0.09; 'unexpected': 0.09; 'encoding': 0.15; 'explicitly': 0.15; 'file,': 0.15; 'interpreter': 0.15; "skip:' 30": 0.15; 'behaviour.': 0.16; 'codec': 0.16; 'cp1252': 0.16; 'decode': 0.16; 'decoding': 0.16; 'denotes': 0.16; 'encoded.': 0.16; 'expects': 0.16; 'hex': 0.16; 'log.': 0.16; 'mangled': 0.16; 'received:80.91.229.3': 0.16; 'received:dip0.t-ipconnect.de': 0.16; 'received:io': 0.16; 'received:plane.gmane.org': 0.16; 'received:psf.io': 0.16; 'received:t-ipconnect.de': 0.16; 'script?': 0.16; 'wrote:': 0.16; 'string': 0.17; 'byte': 0.18; 'bytes': 0.18; 'instance,': 0.18; 'string,': 0.18; 'input': 0.18; '>>>': 0.20; 'changes': 0.20; 'portion': 0.20; '"",': 0.22; 'pipe': 0.22; 'bit': 0.23; '(most': 0.24; 'module': 0.25; 'header :User-Agent:1': 0.26; 'command': 0.26; 'header:X-Complaints-To:1': 0.26; 'skip:" 20': 0.26; 'error': 0.27; 'followed': 0.27; 'logging': 0.27; 'sequence': 0.27; 'specify': 0.27; 'actual': 0.28; 'environment': 0.29; 'character': 0.29; 'code': 0.30; 'guess': 0.31; 'fixed': 0.31; "can't": 0.32; 'help,': 0.32; 'skip:. 10': 0.32; 'point': 0.33; 'michael': 0.33; 'right?': 0.33; 'traceback': 0.33; 'case,': 0.34; 'editor': 0.34; "skip:' 20": 0.34; 'file': 0.34; 'skip:d 20': 0.34; 'trouble': 0.35; 'text': 0.35; 'skip:. 20': 0.35; 'text.': 0.35; "isn't": 0.35; 'but': 0.36; 'skip:i 20': 0.36; 'there': 0.36; '(and': 0.36; 'alone': 0.36; 'depends': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'two': 0.37; 'setting': 0.37; 'received:org': 0.37; 'log': 0.38; 'skip:p 20': 0.38; 'end': 0.39; 'why': 0.39; 'data': 0.39; 'to:addr:python.org': 0.40; 'subject:with': 0.40; 'still': 0.40; 'received:de': 0.40; 'your': 0.60; 'skip:u 10': 0.61; 'default': 0.61; 'show': 0.62; 'different': 0.63; 'here': 0.66; 'touch': 0.66; 'situation': 0.67; 'applying': 0.70; 'euro': 0.75; 'hand': 0.82; 'points,': 0.84; 'welle': 0.84; 'hand,': 0.97 X-Injected-Via-Gmane: http://gmane.org/ X-Gmane-NNTP-Posting-Host: p57bd8677.dip0.t-ipconnect.de User-Agent: KNode/4.13.3 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Mailman-Original-Message-ID: X-Mailman-Original-References: Xref: csiph.com comp.lang.python:110686 Michael Welle wrote: > With your help, I fixed logging. Somehow I had in mind that the > logging module would do the right thing if I don't specify the encoding. The default encoding depends on the environment (and platform): $ touch tmp.txt $ python3 -c 'print(open("tmp.txt").encoding)' UTF-8 $ LANG=C python3 -c 'print(open("tmp.txt").encoding)' ANSI_X3.4-1968 > Well, setting the encoding explicitly to utf-8 changes the behaviour. > > If I use decode('windows-1252') on a bit of text I still have trouble to > understand what's happening. For instance, there is an u umlaut in the > 1252 encoded portion of the input text. That character is 0xfc in hex. > After applying .decode('windows-1252') and logging it, the log contains > a mangled character with hex codes 0xc3 0x20. If I do the same with > .decode('utf-8'), the result is a working u umlaut with 0xfc in the log. > > On the other hand, if I try the following in the interactive > interpreter: > > Here I have a few bytes that can be interpreted as a 1252 encoded string > and I command the interpreter to show me the string, right? > >>>> e=b'\xe4' >>>> e.decode('1252') > 'ä' > > Now, I can't to this, because 0xe4 isn't valid utf-8: >>>> e.decode('utf-8') > Traceback (most recent call last): > File "", line 1, in > UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe4 in position 0: > unexpected end of data > > But why is it different in my actual script? I guess the assumption that > what I am reading from sys.stdin.buffer is the same as what is in the > file, that I pipe into the script, is wrong? The situation is simple; the string consists of code points, but the file may only contain bytes. When reading a string from a file the bytes read need decoding, and before writing a string to a file it must be encoded. What byte sequence denotes a specific code point depends on the encoding. This is always the case, i. e. if you look at a UTF-8-encoded file with an editor that expects cp1252 you will see >>> in_the_file = "ä".encode("utf-8") >>> in_the_file b'\xc3\xa4' >>> what_the_editor_shows = in_the_file.decode("cp1252") >>> print(what_the_editor_shows) ä On the other hand if you look at a cp1252-encoded file decoding the data as UTF-8 you will likely get an error because the byte >>> "ä".encode("cp1252") b'\xe4' alone is not valid UTF-8. As part of a sequence the data may still be ambiguous. If you were to write an a-umlaut followed by two euro signs using cp1252 >>> in_the_file = '䀀'.encode("cp1252") an editor expecting UTF-8 would show >>> in_the_file.decode("utf-8") '䀀'