1
0
forked from VimPlug/jedi
Files
jedi-fork/jedi/__init__.py
2012-11-07 18:55:54 +01:00

17 lines
320 B
Python

import sys
# python imports are hell sometimes. Especially the combination of relative
# imports and circular imports... Just avoid it:
sys.path.insert(0, __path__[0])
from .api import Script, NotFoundError, set_debug_function
from . import settings
from . import api
__doc__ = api.__doc__
del api
sys.path.pop(0)