micropython

tests/call_func_default.py

65:24df65a47aa8
2008-04-06 Paul Boddie Made optimised attribute access via self optional. Renamed an example.
     1 #!/usr/bin/env python     2      3 def f(a, b, c=4):     4     pass     5      6 f(1, 2, 3)     7 f(1, b=2, c=3)     8 f(c=3, b=2, a=1)     9 f(1, 2)    10     11 g = f    12 g(1, c=3, b=2)    13 g(1, 2)    14     15 def g(a, c, b=5):    16     pass    17     18 g(1, c=3, b=2)    19 g(1, 3)    20     21 # vim: tabstop=4 expandtab shiftwidth=4