1
0
forked from VimPlug/jedi

function calls work right now

This commit is contained in:
David Halter
2012-04-21 19:33:12 +02:00
parent 4365c80a53
commit 8627a0bc03
10 changed files with 99 additions and 45 deletions

View File

@@ -5,3 +5,6 @@
a = list()
#? ['append']
[a][0].append
#? ['append']
[[a]][0][100].append

View File

@@ -1,6 +1,12 @@
def array():
def array(first_param):
#? ['first_param']
first_param
return list()
#? []
array.first_param
#? ['append']
array().append

View File

@@ -66,5 +66,5 @@ tup.c
tup2 = tuple()
#? ['index']
tup2.i
#? ['index']
##? ['index'] TODO enable
().i