py3.0, py3.1 and py32 don't support unicode literals. Support those.

This commit is contained in:
Dave Halter
2014-04-22 16:00:13 +02:00
parent a49c624154
commit 4ae99256be
3 changed files with 15 additions and 3 deletions

View File

@@ -37,9 +37,9 @@ See also :attr:`Scope.subscopes` and :attr:`Scope.statements`.
import os
import re
from inspect import cleandoc
from ast import literal_eval
from jedi._compatibility import next, Python3Method, encoding, unicode, is_py3, u
from jedi._compatibility import (next, Python3Method, encoding, unicode,
is_py3, u, literal_eval)
from jedi import common
from jedi import debug
from jedi import cache