2013-10-08 | Paul Boddie | file changeset files shortlog | Fixed relative import path interpretation to work within package roots. | syspython-as-target |
paul@339 | 1 | #!/usr/bin/env python |
paul@339 | 2 | |
paul@342 | 3 | c = len([3, 4, 5]) |
paul@342 | 4 | |
paul@342 | 5 | def len(a): |
paul@339 | 6 | return a |
paul@339 | 7 | |
paul@342 | 8 | result_2 = len(2) |
paul@339 | 9 | |
paul@339 | 10 | # vim: tabstop=4 expandtab shiftwidth=4 |