micropython

tests/failure/attributes_instance_assignment_external_only.py

803:39ba98ecc020
2014-06-01 Paul Boddie Fixed a docstring to describe the method's actual return value. syspython-as-target
     1 #!/usr/bin/env python     2      3 class C:     4     pass     5      6 c = C()     7 c.a = 123     8 result_123 = c.a     9     10 # vim: tabstop=4 expandtab shiftwidth=4