Sign Problem in Python

Skip Montanaro skip at pobox.com
Fri Nov 16 06:31:14 EST 2001


    guy> query = eq('émission')  --> problem is the "é"

Try using Unicode strings:

    query = eq(u'émission')

-- 
Skip Montanaro (skip at pobox.com - http://www.mojam.com/)
It's only a 25% solution to our problems.  Of course, we only want to solve
25% of our problems, so it becomes a 100% solution.




More information about the Python-list mailing list