micropython

tests/attributes_instance_and_class_assignment_external_unknown.py

519:814bd122d84d
2012-06-04 Paul Boddie Updated the documentation to reflect class attribute assignment policies. Added tests to demonstrate class attribute rebinding.
     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