micropython

tests/failure/shadow_globals_builtins_conflict_implicit.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 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