1
0
forked from VimPlug/jedi
Files
jedi-fork/jedi/plugins/flask.py

25 lines
1021 B
Python

from jedi.plugins.base import BasePlugin
class FlaskPlugin(BasePlugin):
def import_module(self, callback):
"""
Handle "magic" Flask extension imports:
``flask.ext.foo`` is really ``flask_foo`` or ``flaskext.foo``.
"""
def wrapper(evaluator, import_names, module_context, sys_path):
if len(import_names) == 3 and import_names[:2] == ('flask', 'ext'):
# New style.
ipath = (u'flask_' + import_names[2]),
context_set = callback(evaluator, ipath, None, sys_path)
if not context_set:
context_set = callback(evaluator, (u'flaskext',), None, sys_path)
return callback(
evaluator,
(u'flaskext', import_names[2]),
next(iter(context_set)),
sys_path
)
return callback(evaluator, import_names, module_context, sys_path)
return wrapper