micropython

Annotated tests/failure/attributes_set_class.py

299:feccb2b0967e
2010-02-08 Paul Boddie Added control-flow branch abandonment for statements like break, continue, raise and return, preventing attribute usage from such branches from contributing to subsequent usage observations. Split the initial attribute usage test into smaller tests. Added notes about testing guard suitability.
paul@219 1
#!/usr/bin/env python
paul@219 2
paul@219 3
class C:
paul@219 4
    clsattr = 123
paul@219 5
paul@219 6
    def update(self, value):
paul@219 7
        self.attr = value
paul@219 8
        C.clsattr = value
paul@219 9
paul@219 10
c = C()
paul@219 11
c.update(456)
paul@219 12
paul@219 13
# vim: tabstop=4 expandtab shiftwidth=4