mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 22:14:27 +08:00
import changes so that all local imports are 'from jedi.* import *'
This commit is contained in:
@@ -36,6 +36,6 @@ good text editor, while still having very good IDE features for Python.
|
||||
|
||||
__version__ = 0, 7, 1, 'alpha1'
|
||||
|
||||
from .api import Script, Interpreter, NotFoundError, set_debug_function
|
||||
from .api import preload_module, defined_names
|
||||
from . import settings
|
||||
from jedi.api import Script, Interpreter, NotFoundError, set_debug_function
|
||||
from jedi.api import preload_module, defined_names
|
||||
from jedi import settings
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
from _compatibility import u, encoding, is_py3k
|
||||
from jedi._compatibility import u, encoding, is_py3k
|
||||
import inspect
|
||||
import time
|
||||
|
||||
|
||||
@@ -3,9 +3,9 @@ Module to handle interpreted Python objects.
|
||||
"""
|
||||
|
||||
import itertools
|
||||
import tokenize
|
||||
|
||||
from jedi.parser import representation as pr
|
||||
from jedi.parser import tokenizer as tokenize
|
||||
from jedi.parser import token
|
||||
|
||||
|
||||
|
||||
@@ -37,13 +37,13 @@ from __future__ import with_statement
|
||||
|
||||
import os
|
||||
import re
|
||||
import tokenizer as tokenize
|
||||
from inspect import cleandoc
|
||||
from ast import literal_eval
|
||||
|
||||
from jedi._compatibility import next, Python3Method, encoding, unicode, is_py3k
|
||||
from jedi import common
|
||||
from jedi import debug
|
||||
from jedi.parser import tokenizer as tokenize
|
||||
|
||||
|
||||
class Base(object):
|
||||
|
||||
Reference in New Issue
Block a user