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