up vote 8 down vote favorite
5
share [g+] share [fb]

We've already gotten our code base running under Python 2.6. In order to prepare for Python 3.0, we've started adding:

from __future__ import unicode_literals

into our .py files (as we modify them). I'm wondering if anyone else has been doing this and has run into any non-obvious gotchas (perhaps after spending a lot of time debugging).

link|improve this question

feedback

5 Answers

up vote 13 down vote accepted

The main source of problems I've had working with unicode strings is when you mix utf-8 encoded strings with unicode ones.

For example, consider the following scripts.

two.py

# encoding: utf-8
name = 'helló wörld from two'

one.py

# encoding: utf-8
from __future__ import unicode_literals
import two
name = 'helló wörld from one'
print name + two.name

The output of running "python one.py" is:

Traceback (most recent call last):
  File "one.py", line 5, in <module>
    print name + two.name
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 4: ordinal not in range(128)

In this example, two.name is an utf-8 encoded string (not unicode) since it did not import unicode_literals, and one.name is an unicode string. When you mix both, python tries to decode the encoded string (assuming it's ascii) and convert it to unicode and fails. It would work if you did print name + two.name.decode('utf-8').

The same thing can happen if you encode a string and try to mix them later. For example, this works:

# encoding: utf-8
html = '<html><body>helló wörld</body></html>'
if isinstance(html, unicode):
    html = html.encode('utf-8')
print 'DEBUG: %s' % html

Output:

DEBUG: <html><body>helló wörld</body></html>

But after adding the import unicode_literals it does NOT:

# encoding: utf-8
from __future__ import unicode_literals
html = '<html><body>helló wörld</body></html>'
if isinstance(html, unicode):
    html = html.encode('utf-8')
print 'DEBUG: %s' % html

Output:

Traceback (most recent call last):
  File "test.py", line 6, in <module>
    print 'DEBUG: %s' % html
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 16: ordinal not in range(128)

It fails because 'DEBUG: %s' is an unicode string and therefore python tries to decode html. A couple of ways to fix the print are either doing print str('DEBUG: %s') % html or print 'DEBUG: %s' % html.decode('utf-8').

I hope this helps you understand the potential gotchas when using unicode strings.

link|improve this answer
+1: good answer – nosklo May 6 '09 at 0:58
Thanks, I think I actually may have run into this one (without necessarily realizing what was going on). – Jacob Gabrielson May 6 '09 at 17:29
1  
I would suggest to go with the decode() solutions instead of the str() or encode() solutions: the more often you use Unicode objects, the clearer the code is, since what you want is to manipulate strings of characters, not arrays of bytes with an externally implied encoding. – EOL Sep 3 '10 at 12:35
feedback

Also in 2.6 (before python 2.6.5 RC1+) unicode literals doesn't play nice with keyword arguments (issue4978):

The following code for example works without unicode_literals, but fails with TypeError: keywords must be string if unicode_literals is used.

  >>> def foo(a=None): pass
  ...
  >>> foo(**{'a':1})
  Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
      TypeError: foo() keywords must be strings
link|improve this answer
2  
Just FYI, python 2.6.5 RC1+ has fixed this. – Mahmoud Abdelkader May 21 '10 at 6:52
feedback

I did find that if you add the unicode_literals directive you should also add something like:

 # -*- coding: utf-8

to the first or second line your .py file. Otherwise lines such as:

 foo = "barré"

result in an an error such as:

SyntaxError: Non-ASCII character '\xc3' in file mumble.py on line 198,
 but no encoding declared; see http://www.python.org/peps/pep-0263.html 
 for details
link|improve this answer
1  
+1. Though shouldn't you do this under all circumstances? – Ian Mackinnon Oct 28 '10 at 20:35
feedback

Also take into account that unicode_literal will affect eval() but not repr() (an asymmetric behavior which imho is a bug), i.e. eval(repr(b'\xa4')) won't be equal to b'\xa4' (as it would with Python 3).

Ideally, the following code would be an invariant, which should always work, for all combinations of unicode_literals and Python {2.7, 3.x} usage:

from __future__ import unicode_literals

bstr = b'\xa4'
assert eval(repr(bstr)) == bstr # fails in Python 2.7, holds in 3.1

ustr = '\xa4'
assert eval(repr(bstr)) == bstr # holds in Python 2.7 and 3.1

The second assertion happens to work, since repr('\xa4') evaluates to u'\xa4' in Python 2.7.

link|improve this answer
feedback

Well, there is also a problem with str() (and unicode()). If I need to use str (or unicode) and to make script which would work both with python 2.6 and python 3.2.1 I've got a problem:

# -*- coding: utf-8 -*-
from __future__ import division, absolute_import, print_function, unicode_literals
print(type(str("čečetka")))
print(type(unicode("čečetka")))

This script fails both with python2 and python3:

mitmanek:json_diff (broken) $ python test_unicode.py 
Traceback (most recent call last):
  File "test_unicode.py", line 3, in <module>
    print(type(str("čečetka")))
UnicodeEncodeError: 'ascii' codec can't encode character u'\u010d' in position 0:
    ordinal not in range(128)
mitmanek:json_diff (broken) $ python3 test_unicode.py 
<class 'str'>
Traceback (most recent call last):
  File "test_unicode.py", line 4, in <module>
    print(type(unicode("čečetka")))
NameError: name 'unicode' is not defined

Any ideas how to make a str() which would work on both with Python2 and Python3?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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