micropython

tests/call_method_ref.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(1, 2, 3)    13     14 # vim: tabstop=4 expandtab shiftwidth=4