micropython

tests/failure/argument_shortage.py

803:39ba98ecc020
2014-06-01 Paul Boddie Fixed a docstring to describe the method's actual return value. syspython-as-target
     1 #!/usr/bin/env python     2      3 def f(a, b, c):     4     pass     5      6 g = f     7 g(1, 2) # uncertain target - not detected     8      9 def g(a, c, b):    10     pass    11     12 g(1, a=3, b=2)    13     14 f(1, 2, 3)    15 f(1, 2)    16     17 # vim: tabstop=4 expandtab shiftwidth=4