further function tests

This commit is contained in:
David Halter
2012-04-22 14:47:36 +02:00
parent a42dd9e4fa
commit 4543b14cd4
2 changed files with 16 additions and 2 deletions

View File

@@ -19,3 +19,17 @@ def inputs(param):
#? ['append']
inputs(list).append
def variable_middle():
var = 3
return var
#? ['real']
variable_middle().real
def variable_rename(param):
var = param
return var
#? ['imag']
variable_rename(1).imag