micropython

tests/attributes_instance_assignment_external_unknown.py

435:29c1a9810249
2011-06-26 Paul Boddie Changed the title of generated graphs.
     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