1
0
forked from VimPlug/jedi

Export Interpreter class to top-level namespace

This commit is contained in:
Takafumi Arakaki
2013-05-04 17:50:42 +02:00
parent e8914e7856
commit 3d0458bca9

View File

@@ -40,7 +40,9 @@ import sys
# imports and circular imports... Just avoid it:
sys.path.insert(0, __path__[0])
from .api import Script, NotFoundError, set_debug_function, _quick_complete
from .api import (
Script, Interpreter, NotFoundError, set_debug_function, _quick_complete,
)
from . import settings
sys.path.pop(0)