micropython

tests/failure/shadow_globals_builtins_conflict.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 x = [1, 2, 3]     4      5 if x:     6     y = len(x)     7 else:     8     def len(arg):     9         return 0    10     11 z = len(x)    12     13 # vim: tabstop=4 expandtab shiftwidth=4