micropython

tests/attributes_instance_and_class_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     a = 1     9     10 def f(obj, value):    11     obj.a = value    12     13 c = C()    14 f(c, 123)    15 f(D, 456)    16 result_123 = c.a    17 result_456 = D.a    18     19 # vim: tabstop=4 expandtab shiftwidth=4