1 #!/usr/bin/env python 2 3 class C: 4 def f(self, a, b, c): 5 self.a = a 6 self.b = b 7 self.c = c 8 9 c = C() 10 11 f = c.f 12 f(1, 2, 3) 13 14 # vim: tabstop=4 expandtab shiftwidth=4