Comment on Making Sense of Python UnicodeparentComments−nas16yIn 2.6 you can use: "from __future__ import unicode_literals". Use b'...' to get a str() instance instead of a unicode() object after that.−mshafrir16ySome gotchas: http://stackoverflow.com/questions/809796/any-gotchas-using-...
Comments
In 2.6 you can use: "from __future__ import unicode_literals". Use b'...' to get a str() instance instead of a unicode() object after that.
Some gotchas: http://stackoverflow.com/questions/809796/any-gotchas-using-...