1
0
forked from VimPlug/jedi

probably half of the tests are running again.

This commit is contained in:
David Halter
2012-08-12 02:09:10 +02:00
parent 3ae7d3f278
commit 673cb30ee8
4 changed files with 25 additions and 5 deletions

View File

@@ -210,3 +210,18 @@ tuple(lst)[0]
# but not with an iterator
#?
iter(lst)[0]
# -----------------
# functions
# -----------------
def arr_append(arr, a):
arr.append(a)
def add_to_arr(arr, a):
arr.append(a)
return arr
a = [1.0]
#? int()
add_to_arr(a, 1)[0]