rename non-cycling imports to 'from jedi import ..'

This commit is contained in:
David Halter
2013-03-15 15:02:33 +04:30
parent 2f809d8066
commit 9ad9c806bb
18 changed files with 86 additions and 87 deletions

View File

@@ -6,11 +6,11 @@ finished (and still not working as I want), I won't document it any further.
import re
import operator
from _compatibility import use_metaclass, reduce, property
import settings
import parsing
import parsing_representation as pr
import cache
from jedi._compatibility import use_metaclass, reduce, property
from jedi import settings
from jedi import parsing
from jedi import parsing_representation as pr
from jedi import cache
class Module(pr.Simple, pr.Module):