micropython

tests/failure/shadow_globals_builtins_conflict_implicit.py

634:c1c95a183e21
2013-01-14 Paul Boddie Moved common logic into a separate method.
     1 #!/usr/bin/env python     2      3 x = [1, 2, 3]     4      5 if not x:     6     def len(arg):     7         return 0     8      9 y = len(x)    10     11 # vim: tabstop=4 expandtab shiftwidth=4