forked from VimPlug/jedi
commands after the current position are getting ignored now - with failed import tests
This commit is contained in:
@@ -27,6 +27,15 @@ class TestClass(object):
|
||||
def ret(self, a1):
|
||||
return a1
|
||||
|
||||
# should not work
|
||||
#? []
|
||||
var_local
|
||||
#? []
|
||||
var_inst
|
||||
#? []
|
||||
var_func
|
||||
|
||||
# instance
|
||||
inst = TestClass(1)
|
||||
|
||||
#? ['var_class', 'var_func', 'var_inst', 'var_local']
|
||||
|
||||
@@ -14,6 +14,12 @@ float.is_int
|
||||
#? ['is_integer']
|
||||
1.0.is_integer
|
||||
|
||||
#? ['upper']
|
||||
"".upper
|
||||
|
||||
#? ['upper']
|
||||
r"".upper
|
||||
|
||||
# -----------------
|
||||
# lists
|
||||
# -----------------
|
||||
|
||||
Reference in New Issue
Block a user