http://www.python.org/dev/peps/pep-0100/

PEP 100 states that the internal format, Python Unicode, holds UTF-16 encodings, but addresses the values as UCS-2 (or UCS-4 when compiled with flag --enable-unicode=ucs4).

Why wasn't UTF-16 chosen (a variable length format) as opposed to UCS-2 (fixed length)?

Though the two encodings are largely the same, UTF-16 was already 4 years old when PEP-100 was published (2000 Mar). Was Python Unicode meant to address backwards compatibility issues?

I'm really just curious as to why Python's internal format was implemented using this (seemingly) hybrid approach to store encoded data internally?

A better way to ask my question might be: does anyone have a citation or link with quote from an official document that specifically states why PEP 100 chose to treat UTF-16 as UCS-2 instead of using UTF-16?

link|improve this question

3  
Better yet, why not use UTF-8 or UTF-32? – Keith Thompson Nov 5 '11 at 21:17
I would've like to have seen UTF-8 too, but my guess is that UTF-8 was probably a little too bleeding edge at the time since RFC 2279, ietf.org/rfc/rfc2279.txt wasn't published until January 1998. I don't know much about UTF-32, but I suspect it wasn't chosen do to storage concerns. Nice comment :) – mkelley33 Nov 5 '11 at 21:31
Are you asking why it wasn't written to handle UTF-16 surrogate pairs properly -- e.g. for string length, indexing, and slicing? – eryksun Nov 5 '11 at 21:43
Note: Working in character terms with length, indexing, and slicing is much more difficult and inefficient with UTF-8 than UTF-16. Using UTF-8 as an internal format (as opposed to external format) is not a Good Idea. – John Machin Nov 5 '11 at 22:26
@eryksun No. I'm asking why UCS-2 was chosen over UTF-16. Though I'd be curious to learn more as to "why it wasn't written to hand UTF-16 surrogate pairs properly". – mkelley33 Nov 5 '11 at 22:40
show 5 more comments
feedback

1 Answer

Read on a little further: "UCS-2 and UTF-16 are the same for all currently defined Unicode character points" ... and that was true in the year 2000 when the PEP was written. The initial implementation covered only the BMP (first 64K codepoints).

link|improve this answer
I read that and understand that they were essentially the same insofar as code points were concerned, but why choose the older UCS-2 instead of the newer UTF-16 if they were both the same for all code points at the time of the writing? What was the advantage of the fixed-length format over the variable-length format? – mkelley33 Nov 5 '11 at 21:26
fixed-width is just easier to process. Also, Unicode is and has been a moving target. It makes sense to adopt unicode features that have been around for a few years. – ObscureRobot Nov 5 '11 at 21:50
1  
@tchrist my intention here wasn't to discuss or critique the merits of the implementation. I agree with your first two sentences as well as your other statements about surrogates, but your attack on Java and Python doesn't contribute anything useful to answering my question. The negativity in your comments also have the effect of derailing the credibility of the things you said that actually might be true. Too bad. – mkelley33 Nov 5 '11 at 23:49
1  
@JohnMachin thanks for the tip. I'll take a look and see if I'm able to bring back any useful information to add here. – mkelley33 Nov 6 '11 at 0:01
1  
@tchrist: perhaps got burned by a bad coder(s) that used Python and/or Java in the wrong way to deal with XML. Both Python and Java can and do handle the full range of code points outside of the BMP. Many Linux systems come with Python prepared to do so. I've compiled Python on Mac OS X to deal with code points outside the BMP. Please stop trolling. – mkelley33 Nov 6 '11 at 0:10
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

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