mirror of
https://github.com/davidhalter/jedi.git
synced 2026-02-19 17:14:31 +08:00
: lookups work now with arrays
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
# -----------------
|
||||
|
||||
Reference in New Issue
Block a user