Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #68061
| Path | csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!newsfeed.xs4all.nl!newsfeed4a.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <python@mrabarnett.plus.com> |
| 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; 'else:': 0.03; 'elif': 0.05; 'encoding': 0.05; 'mrab': 0.05; 'dan': 0.09; 'subject:How': 0.10; 'python': 0.11; 'stored': 0.12; '3.3,': 0.16; 'be:': 0.16; 'from:addr:mrabarnett.plus.com': 0.16; 'from:addr:python': 0.16; 'from:name:mrab': 0.16; 'message-id:@mrabarnett.plus.com': 0.16; 'received:192.168.1.4': 0.16; 'received:84.93': 0.16; 'received:84.93.230': 0.16; 'subject:unicode': 0.16; 'terms:': 0.16; 'wrote:': 0.18; 'header:User-Agent:1': 0.23; 'byte': 0.24; 'bytes': 0.24; "shouldn't": 0.24; 'unicode': 0.24; "i've": 0.25; 'options': 0.25; 'header:In-Reply-To:1': 0.27; 'array': 0.29; 'characters': 0.30; 'code': 0.31; 'probably': 0.32; 'subject:the': 0.34; 'common': 0.35; 'received:84': 0.35; 'but': 0.35; 'subject:?': 0.36; 'sometimes': 0.38; 'depends': 0.38; 'to:addr :python-list': 0.38; 'heard': 0.39; 'realize': 0.39; 'to:addr:python.org': 0.39; 'how': 0.40; 'no.': 0.61; 'more': 0.64; 'details,': 0.68; 'internally.': 0.84 |
| X-CM-Score | 0.00 |
| X-CNFS-Analysis | v=2.1 cv=JLW1sq6b c=1 sm=1 tr=0 a=0nF1XD0wxitMEM03M9B4ZQ==:117 a=0nF1XD0wxitMEM03M9B4ZQ==:17 a=0Bzu9jTXAAAA:8 a=sASEtNAQL0YA:10 a=kezb3IhYthgA:10 a=ihvODaAuJD4A:10 a=IkcTkHD0fZMA:10 a=EBOSESyhAAAA:8 a=7AsrBctkCueufeB8aN4A:9 a=QEXdDO2ut3YA:10 |
| X-AUTH | mrabarnett:2500 |
| Date | Sun, 09 Mar 2014 02:42:46 +0000 |
| From | MRAB <python@mrabarnett.plus.com> |
| User-Agent | Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 |
| MIME-Version | 1.0 |
| To | python-list@python.org |
| Subject | Re: How is unicode implemented behind the scenes? |
| References | <CAGGBd_rSN1bMHkQYix8Lo0TfXi3_k+Q9nu25vMokR1+Eumf5Cg@mail.gmail.com> <531BD49C.4090602@mrabarnett.plus.com> |
| In-Reply-To | <531BD49C.4090602@mrabarnett.plus.com> |
| Content-Type | text/plain; charset=UTF-8; format=flowed |
| Content-Transfer-Encoding | 7bit |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.7945.1394332967.18130.python-list@python.org> (permalink) |
| Lines | 36 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1394332967 news.xs4all.nl 2878 [2001:888:2000:d::a6]:45590 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:68061 |
Show key headers only | View raw
On 2014-03-09 02:40, MRAB wrote:
> On 2014-03-09 02:08, Dan Stromberg wrote:
>> OK, I know that Unicode data is stored in an encoding on disk.
>>
>> But how is it stored in RAM?
>>
>> I realize I shouldn't write code that depends on any relevant
>> implementation details, but knowing some of the more common
>> implementation options would probably help build an intuition for
>> what's going on internally.
>>
>> I've heard that characters are no longer all c bytes wide internally,
>> so is it sometimes utf-8?
>>
> No.
>
> From Python 3.3, it's an array of 1, 2 or 4 bytes per codepoint.
>
> In Python terms:
>
> if all(c <= '\xFF' for c in string):
> use 1 byte per codepoint
> elif all(c <= '\xFFFF' for c in string):
> use 2 bytes per codepoint
> else:
> use 4 bytes per codepoint
>
Oops! That should, of course, be:
if all(c <= '\xFF' for c in string):
use 1 byte per codepoint
elif all(c <= '\uFFFF' for c in string):
use 2 bytes per codepoint
else:
use 4 bytes per codepoint
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: How is unicode implemented behind the scenes? MRAB <python@mrabarnett.plus.com> - 2014-03-09 02:42 +0000
csiph-web