1
0
forked from VimPlug/jedi

changed many tests from old completion tests to type tests, which brings more security

This commit is contained in:
David Halter
2012-07-06 01:29:50 +02:00
parent fdfd475d40
commit 8d26cff54b
3 changed files with 91 additions and 117 deletions

View File

@@ -31,12 +31,12 @@ def fu(a, b, c, *args, **kwargs):
exe = fu(list, c=set, b=3, d='')
#? ['append']
exe[0].append
#? ['real']
exe[1].real
#? ['union']
exe[2].union
#? list()
exe[0]
#? int()
exe[1]
#? set
exe[2]
#? str()
exe[4]['d']