position stuff works now also with function that are located after the just called function

This commit is contained in:
David Halter
2012-07-06 01:07:17 +02:00
parent 28ad77406f
commit fdfd475d40
3 changed files with 49 additions and 5 deletions

View File

@@ -1,4 +1,3 @@
def array(first_param):
#? ['first_param']
first_param
@@ -66,6 +65,24 @@ def recursion(a, b):
##? int() float()
recursion("a", 1.0)
# -----------------
# ordering
# -----------------
#def b():
#return ""
def a():
#? int()
b()
return b()
def b():
return 1
#? int()
a()
# -----------------
# keyword arguments
# -----------------