2013-10-08 | Paul Boddie | file changeset files shortlog | Fixed relative import path interpretation to work within package roots. | syspython-as-target |
paul@182 | 1 | #!/usr/bin/env python |
paul@182 | 2 | |
paul@182 | 3 | class C: |
paul@182 | 4 | def __call__(self): |
paul@229 | 5 | return 42 |
paul@182 | 6 | |
paul@182 | 7 | c = C() |
paul@229 | 8 | result_42 = c() |
paul@182 | 9 | |
paul@182 | 10 | # vim: tabstop=4 expandtab shiftwidth=4 |