micropython

tests/failure/shadow_locals_globals_if.py

605:0bcb66c8b6e2
2012-07-15 Paul Boddie Show only distinct attribute name lists when showing attribute usage for names.
     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