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/
u''since it is now supported in python 3.3 – ubershmekel Apr 20 at 15:42