2011-06-14 | Paul Boddie | file changeset files shortlog | 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 |