micropython

tests/failure/instance_multiple_classes.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     x = 111     5      6 class C:     7     def __init__(self):     8         self.x = 222     9     10 c = C()    11 result_222 = c.x    12     13 # vim: tabstop=4 expandtab shiftwidth=4