1
0
forked from VimPlug/jedi

fix last failing function tests

This commit is contained in:
David Halter
2013-02-11 00:06:31 +01:00
parent da4ad7fd3f
commit de5de41627
2 changed files with 3 additions and 3 deletions

View File

@@ -109,10 +109,10 @@ def func(a=1, b=''):
return a, b
exe = func(b=list, a=tuple)
#? tuple()
#? tuple
exe[0]
#? list()
#? list
exe[1]
# -----------------