mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 06:24: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'
|
__version__ = 0, 7, 1, 'alpha1'
|
||||||
|
|
||||||
from .api import Script, Interpreter, NotFoundError, set_debug_function
|
from jedi.api import Script, Interpreter, NotFoundError, set_debug_function
|
||||||
from .api import preload_module, defined_names
|
from jedi.api import preload_module, defined_names
|
||||||
from . import settings
|
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 inspect
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
|||||||
@@ -3,9 +3,9 @@ Module to handle interpreted Python objects.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import itertools
|
import itertools
|
||||||
import tokenize
|
|
||||||
|
|
||||||
from jedi.parser import representation as pr
|
from jedi.parser import representation as pr
|
||||||
|
from jedi.parser import tokenizer as tokenize
|
||||||
from jedi.parser import token
|
from jedi.parser import token
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -37,13 +37,13 @@ from __future__ import with_statement
|
|||||||
|
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
import tokenizer as tokenize
|
|
||||||
from inspect import cleandoc
|
from inspect import cleandoc
|
||||||
from ast import literal_eval
|
from ast import literal_eval
|
||||||
|
|
||||||
from jedi._compatibility import next, Python3Method, encoding, unicode, is_py3k
|
from jedi._compatibility import next, Python3Method, encoding, unicode, is_py3k
|
||||||
from jedi import common
|
from jedi import common
|
||||||
from jedi import debug
|
from jedi import debug
|
||||||
|
from jedi.parser import tokenizer as tokenize
|
||||||
|
|
||||||
|
|
||||||
class Base(object):
|
class Base(object):
|
||||||
|
|||||||
Reference in New Issue
Block a user