1
0
forked from VimPlug/jedi

: lookups work now with arrays

This commit is contained in:
David Halter
2012-05-10 14:39:31 +02:00
parent 71f61b200c
commit 17d498387b
3 changed files with 40 additions and 11 deletions

View File

@@ -12,7 +12,21 @@ a = list()
[a][0].append
#? ['append']
[[a]][0][100].append
[[a,a,a]][2][100].append
c = [[a,""]]
#? []
c[0][1].append
#? ['upper']
c[0][1].upper
b = [6,7]
#? ['real']
b[8-7].real
#? ['append']
b[8:].append
# -----------------