MRAB wrote:

> Gaudha wrote:

>> I wanna make all the strings in my code unicode strings. How to do it
>> without giving unicode switch 'u' before every string?
> 
> Use Python 3.1 instead.

or use

from __future__ import unicode_literals 

in Python 2.6.


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to