1
0
forked from VimPlug/jedi
This commit is contained in:
David Halter
2012-12-19 02:01:57 +01:00
parent 7d3fd315d3
commit 571a96c02b

View File

@@ -2,6 +2,7 @@
# basic array lookups # basic array lookups
# ----------------- # -----------------
#? int() #? int()
[1,""][0] [1,""][0]
#? str() #? str()
@@ -161,6 +162,13 @@ dic2[r'asdf']
#? int() str() #? int() str()
dic2['just_something'] dic2['just_something']
def f():
r = {}
r['status'] = (200, 'ok')
return r
#? dict()
f()
# ----------------- # -----------------
# with variable as index # with variable as index
# ----------------- # -----------------