1
0
forked from VimPlug/jedi

follow 'from . import variable', fixes parts of davidhalter/jedi-vim#56

This commit is contained in:
David Halter
2012-12-27 15:30:43 +01:00
parent 31b335dc08
commit 21bd50c608
3 changed files with 29 additions and 11 deletions

View File

@@ -118,6 +118,9 @@ from import_tree.pkg.mod1 import a
#! ['import os']
from .imports import os
#! ['some_variable=1']
from . import some_variable
# -----------------
# anonymous classes
# -----------------