Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed1a.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.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; ';-)': 0.03; 'subject:Python': 0.06; 'assign': 0.07; 'incompatible': 0.07; 'indexing': 0.07; 'scaling': 0.07; 'skip:u 30': 0.07; 'subject: -- ': 0.07; 'utf-8': 0.07; 'string': 0.09; '%s"': 0.09; 'bits': 0.09; 'character,': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'assume': 0.14; 'thread': 0.14; '.........': 0.16; 'character.': 0.16; 'happy,': 0.16; 'internally': 0.16; 'operation,': 0.16; 'operation.': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'subject: \n ': 0.16; 'unicode,': 0.16; 'utf8': 0.16; 'wider': 0.16; 'wrote:': 0.18; 'starts': 0.20; 'fit': 0.20; '>>>': 0.22; 'header:User-Agent:1': 0.23; 'byte': 0.24; 'bytes': 0.24; 'unicode': 0.24; 'decide': 0.24; 'paul': 0.24; "i've": 0.25; '(see': 0.26; 'header:X -Complaints-To:1': 0.27; 'header:In-Reply-To:1': 0.27; 'thus': 0.29; 'tim': 0.29; "doesn't": 0.30; 'characters': 0.30; 'skip:( 20': 0.30; '>>>>': 0.31; 'chase': 0.31; "d'aprano": 0.31; 'steven': 0.31; 'subject:skip:i 10': 0.31; 'writes:': 0.31; 'allows': 0.31; 'maybe': 0.34; 'skip:u 20': 0.35; 'computing': 0.35; 'but': 0.35; 'there': 0.35; 'false': 0.36; 'possible': 0.36; 'should': 0.36; 'searching': 0.37; 'skip:o 20': 0.38; 'to:addr :python-list': 0.38; 'that,': 0.38; 'visual': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'even': 0.60; 'skip:u 10': 0.60; 'most': 0.60; 'situation': 0.65; 'world': 0.66; 'side': 0.67; 'between': 0.67; 'believe': 0.68; 'received:109': 0.72; 'eight': 0.74; 'different.': 0.84; 'distinguish': 0.84; 'everything,': 0.84; 'everything.': 0.84; 'western': 0.86; 'russia': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Robin Becker Subject: Re: Micro Python -- a lean and efficient implementation of Python 3 Date: Wed, 04 Jun 2014 12:53:19 +0100 References: <20140603194949.3147497d@x34f> <44acd692-5dcd-4e5f-8238-7fbe0de4db2a@googlegroups.com> <538ecdef$0$11109$c3e8da3@news.astraweb.com> <7xoay9w1h0.fsf@ruckus.brouhaha.com> <20140604060152.2cdf8198@bigbox.christie.dr> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Gmane-NNTP-Posting-Host: 109.174.168.73 User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 In-Reply-To: <20140604060152.2cdf8198@bigbox.christie.dr> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 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: 45 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1401882811 news.xs4all.nl 2944 [2001:888:2000:d::a6]:54616 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:72628 On 04/06/2014 12:01, Tim Chase wrote: > On 2014-06-04 00:58, Paul Rubin wrote: >> Steven D'Aprano writes: >>>> Maybe there's a use-case for a microcontroller that works in >>>> ISO-8859-5 natively, thus using only eight bits per character, >>> That won't even make the Russians happy, since in Russia there >>> are multiple incompatible legacy encodings. >> >> I've never understood why not use UTF-8 for everything. > > If you use UTF-8 for everything, then you end up in a world where > string-indexing (see ChrisA's other side thread on this topic) is no > longer an O(1) operation, but an O(N) operation. Some of us slice > strings for a living. ;-) I understand that using UTF-32 would allow > us to maintain O(1) indexing at the cost of every string occupying 4 > bytes per character. The FSR (again, as I understand it) allows > strings that fit in one-byte-per-character to use that, scaling up to > use wider characters internally as they're actually needed/used. > ........ I believe that we should distinguish between glyph/character indexing and string indexing. Even in unicode it may be hard to decide where a visual glyph starts and ends. I assume most people would like to assign one glyph to one unicode, but that's not always possible with composed glyphs. >>> for a in (u'\xc5',u'A\u030a'): ... for o in (u'\xf6',u'o\u0308'): ... u=a+u'ngstr'+o+u'm' ... print("%s %s" % (repr(u),u)) ... u'\xc5ngstr\xf6m' Ångström u'\xc5ngstro\u0308m' Ångström u'A\u030angstr\xf6m' Ångström u'A\u030angstro\u0308m' Ångström >>> u'\xc5ngstr\xf6m'==u'\xc5ngstro\u0308m' False so even unicode doesn't always allow for O(1) glyph indexing. I know this is artificial, but this is the same situation as utf8 faces just the frequency of occurrence is different. A very large amount of computing is still western centric so searching a byte string for latin characters is still efficient; searching for an n with a tilde on top might not be so easy. -- Robin Becker