micropython

tests/failure/shadow_globals_builtins.py

803:39ba98ecc020
2014-06-01 Paul Boddie Fixed a docstring to describe the method's actual return value. syspython-as-target
     1 #!/usr/bin/env python     2      3 i = 2     4 while i > 0:     5     c = len([3, 4, 5]) # right hand side name changes origin     6      7     def len(a):     8         return a     9     10     i -= 1    11     12 result_2 = len(2)    13     14 # vim: tabstop=4 expandtab shiftwidth=4