So I have a python script that I'd prefer worked on python 3.2 and 2.7 just for convenience.

Is there a way to have unicode literals that work in both? E.g.

#coding: utf-8
whatever = 'שלום'

The above code would require a unicode string in python 2.x (u'') and in python 3.x that little 'u' causes a syntax error.

Anyhow I found the answer, all I needed was:

from __future__ import unicode_literals

I'm still posting the question because of Should I continue adding a question if I have found the answer myself?

For the curious, this is what I'm working on: http://code.google.com/p/pytitle/

link|improve this question

12  
If you're answering the question yourself, you should put the answer as an answer. – Daniel Roseman Jul 8 '11 at 14:23
feedback

1 Answer

up vote 5 down vote accepted

In Python 2.6 and 2.7 you can use

from __future__ import unicode_literals

To make the string literals into Unicode literals. This can however be confusing, and doesn't work in Python 2.5. Another option is to make a method that creates unicode objects from string objects in Python 2, but leaves the string objects alone in Python 3 (as they are already unicode).

import sys
if sys.version < '3':
    import codecs
    def u(x):
        return codecs.unicode_escape_decode(x)[0]
else:
    def u(x):
        return x

You would then use it like so:

>>> print(u('\u00dcnic\u00f6de'))
Ünicöde
>>> print(u('\xdcnic\N{Latin Small Letter O with diaeresis}de'))
Ünicöde
link|improve this answer
I'd accept your answer if you removed the second part because it doesn't work for unicode literals that contain actual unescaped unicode. edit - I'd be just as happy if you clarified that nuance in the answer. – ubershmekel Jul 15 '11 at 6:45
You don't pass in unicode literals, you pass in string literals, that's the whole point of it. I tried to clarify this. – Lennart Regebro Jul 15 '11 at 9:21
feedback

Your Answer

 
or
required, but never shown

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