micropython

tests/attributes_instance_assignment_external_unknown.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 __init__(self):     5         self.a = 0     6      7 class D:     8     def __init__(self):     9         self.a = 1    10     11 def f(obj, value):    12     obj.a = value    13     14 c = C()    15 d = D()    16 f(c, 123)    17 f(d, 456)    18 result_123 = c.a    19 result_456 = d.a    20     21 # vim: tabstop=4 expandtab shiftwidth=4