micropython

Annotated tests/failure/shadow_globals_builtins_conflict_implicit.py

432:1964e5898e68
2011-06-14 Paul Boddie Fixed negation of operator method results in other operator methods. Added NotImplementedType as an automatically generated class.
paul@343 1
#!/usr/bin/env python
paul@343 2
paul@343 3
x = [1, 2, 3]
paul@343 4
paul@343 5
if not x:
paul@343 6
    def len(arg):
paul@343 7
        return 0
paul@343 8
paul@343 9
y = len(x)
paul@343 10
paul@343 11
# vim: tabstop=4 expandtab shiftwidth=4