1 #!/usr/bin/env python 2 3 def f(a, b, c): 4 pass 5 6 g = f 7 g(1, b=3, b=2) 8 g(c=3, b=2, a=1, b=0) # uncertain target - not detected 9 10 def g(a, c, b): 11 pass 12 13 g(1, a=3, b=2) 14 15 f(1, 2, 3) 16 f(1, b=2, c=3) 17 f(c=3, b=2, a=1, b=0) 18 19 # vim: tabstop=4 expandtab shiftwidth=4