unichr(0x10000) fails with a ValueError when cpython is compiled without --enable-unicode=ucs4.

Is there a language builtin or core library function that converts an arbitrary unicode scalar value or code-point to a unicode string that works regardless of what kind of python interpreter the program is running on?

link|improve this question

I’m pretty sure that this can’t be done, and that it is one of the reasons you can’t trust somebody else’s Python to run on arbitrary Unicode data. However, this seems to be fixed in the v3.3 release. If you want abstract Unicode, you have to wait for the next release, or use a more robust platform. – tchrist Feb 15 at 0:42
@tchrist, Thanks. Yeah. I need to learn Python3.x. It seems to fix a lot of little sources of confusion. – Mike Samuel Feb 15 at 11:31
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.