2009-11-28 | Paul Boddie | file changeset files shortlog | Added another reference. |
paul@59 | 1 | #!/usr/bin/env python |
paul@59 | 2 | |
paul@59 | 3 | def f(a, b, c): |
paul@59 | 4 | pass |
paul@59 | 5 | |
paul@59 | 6 | f(1, 2, 3) |
paul@59 | 7 | f(1, 2, 3, 4) |
paul@59 | 8 | |
paul@59 | 9 | # vim: tabstop=4 expandtab shiftwidth=4 |