micropython

tests/call_method_ref.py

438:b547786f38c7
2011-07-02 Paul Boddie Moved some code generation methods into a new Assembler class. Separated sequence element storage into a separate method which may form the basis of a native library routine.
     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 result_1 = c.a    14 result_2 = c.b    15 result_3 = c.c    16     17 # vim: tabstop=4 expandtab shiftwidth=4