1 #!/usr/bin/env python 2 3 def f(a, b, c): 4 pass 5 6 g = f 7 g(1, a=3, b=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, a=2, c=3) 16 f(c=3, b=2, a=1) 17 18 # vim: tabstop=4 expandtab shiftwidth=4