2013-05-01 | Paul Boddie | file changeset files shortlog | Added some tests of dynamic attribute access using getattr and string constants. | syspython-as-target |
paul@213 | 1 | #!/usr/bin/env python |
paul@213 | 2 | |
paul@213 | 3 | def f(*args): |
paul@213 | 4 | return args |
paul@213 | 5 | |
paul@213 | 6 | x = f(1, 2, 3) |
paul@213 | 7 | |
paul@213 | 8 | # vim: tabstop=4 expandtab shiftwidth=4 |