micropython

tests/for_if_usage_continue.py

515:20ea2e9b841d
2012-06-03 Paul Boddie Restricted attribute assignments observed through usage analysis to instance attributes only.
     1 #!/usr/bin/env python     2      3 class C:     4     p = 1     5     q = 2     6      7 c = C()     8 a = 1     9     10 for x in 0, 1, 2:    11     if x == 1:    12         continue    13     14     if a:    15         b = c.p    16     else:    17         b = c.q    18     19 result_1 = b    20     21 # vim: tabstop=4 expandtab shiftwidth=4