* imported u for python 3.2

This commit is contained in:
Jean-Louis Fuchs
2013-12-07 22:53:01 +01:00
parent 5c543ac364
commit e204c27ecc

View File

@@ -6,7 +6,7 @@ tokenizer returns. Therefore we need a memory efficient class. We
found that a flat object with slots is the best.
"""
from jedi._compatibility import unicode
from jedi._compatibility import unicode, u
class Token(object):