tests/call_func.py | raw changeset files shortlog |
1.1 --- a/tests/call_func.py Sat May 16 01:34:03 2009 +0200 1.2 +++ b/tests/call_func.py Sun May 17 00:58:27 2009 +0200 1.3 @@ -1,10 +1,10 @@ 1.4 #!/usr/bin/env python 1.5 1.6 def f(a, b, c): 1.7 - pass 1.8 + return c 1.9 1.10 -f(1, 2, 3) 1.11 -f(1, b=2, c=3) 1.12 -f(c=3, b=2, a=1) 1.13 +x = f(1, 2, 3) 1.14 +y = f(1, b=2, c=3) 1.15 +z = f(c=3, b=2, a=1) 1.16 1.17 # vim: tabstop=4 expandtab shiftwidth=4