Fix an array lookup issue. list.pop calls work now pretty well and return the right type.

This commit is contained in:
Dave Halter
2015-02-26 13:57:54 +01:00
parent d318d3c855
commit b8a8c4d402
4 changed files with 26 additions and 3 deletions

View File

@@ -47,6 +47,17 @@ arr2.app
#? int()
arr.count(1)
x = []
#?
x.pop()
x = [3]
#? int()
x.pop()
x = []
x.append(1.0)
#? float()
x.pop()
# -----------------
# dicts
# -----------------