micropython

tests/call_method_via_class.py

224:f7698e3444e0
2009-05-24 Paul Boddie Removed redundant code.
     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(c, 1, 2, 3) # test self argument    13     14 # vim: tabstop=4 expandtab shiftwidth=4