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