micropython

tests/call_method_via_class.py

510:41b26d6cd7ea
2012-05-21 Paul Boddie Expanded the documentation, adding prerequisites, reports and roadmap sections. Updated the copyright information.
     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 result_1 = c.a    14 result_2 = c.b    15 result_3 = c.c    16     17 # vim: tabstop=4 expandtab shiftwidth=4