micropython

tests/attributes_instance_and_class_assignment_external_unknown.py

764:fe0c7e0224b5
2013-12-08 Paul Boddie Support operator method access using the generic attribute access mechanism. syspython-as-target
     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