1 #!/usr/bin/env python 2 3 def f(a, b, c): 4 pass 5 6 f(1, 2, 3) 7 f(1, 2, 3, 4) 8 9 # vim: tabstop=4 expandtab shiftwidth=4