Commit 96a95e09 authored by Stefan Behnel's avatar Stefan Behnel

extended test output

parent ab7f482b
...@@ -15,6 +15,7 @@ __doc__ = u""" ...@@ -15,6 +15,7 @@ __doc__ = u"""
#15 #15
>>> x2(1)(2)(4) >>> x2(1)(2)(4)
4 2 1
15 15
>>> inner_override(2,4)() >>> inner_override(2,4)()
...@@ -81,6 +82,7 @@ def local_x(int arg_x): ...@@ -81,6 +82,7 @@ def local_x(int arg_x):
def x2(int x2): def x2(int x2):
def y2(y2): def y2(y2):
def z2(long z2): def z2(long z2):
print z2, y2, x2
return 8+z2+y2+x2 return 8+z2+y2+x2
return z2 return z2
return y2 return y2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment