I'm a little confused about how the standard library will behave now that Python (from 3.0) is unicode-based. Will modules such as CGI and urllib use unicode strings or will they use the new 'bytes' type and just provide encoded data?
|
|
|||
|
|
|
Logically a lot of things like MIME-encoded mail messages, URLs, XML documents, and so on should be returned as |
||
|
|
|
|
One of the great things about this question (and Python in general) is that you can just mess around in the interpreter! Python 3.0 rc1 is currently available for download.
|
||
|
|
|
There will be a two-step dance here. See Python 3000 and You. Step 1 is to get running under 3.0. Step 2 is to rethink your API's to, perhaps, do something more sensible. The most likely course is that the libraries will switch to unicode strings to remain as compatible as possible with how they used to work. Then, perhaps, some will switch to bytes to more properly implement the RFC standards for the various protocols. |
||
|
|
