micropython

tests/failure/shadow_locals_globals_if.py

400:5c5cddf971cb
2011-02-26 Paul Boddie Added tag feature-universal-__class__-attributes for changeset 83dc777c7083
     1 #!/usr/bin/env python     2      3 a = 1     4      5 def reassign(i):     6     if i:     7         a = a     8     return a # name has varying origin     9     10 result2_1 = reassign(3)    11     12 # vim: tabstop=4 expandtab shiftwidth=4