2007-09-06 | Paul Boddie | file changeset files shortlog | Added a fully-qualified name method for WithName-derived classes, producing a more usable global name for applications such as the viewer. Added a method for returning "visible" class attributes to GeneralClass. Added an attribute table production function for integration with the explicit distribution, along with a test program option for generating such a table. |
paulb@23 | 1 | def g(a, b, c, d, e): |
paulb@23 | 2 | pass |
paulb@23 | 3 | |
paulb@14 | 4 | def f(a, b, c=2, *d, **e): |
paulb@23 | 5 | return g(a, b, c, d, e) |
paulb@23 | 6 | |
paulb@23 | 7 | f(1, 2) |
paulb@23 | 8 | f("1", "2") |
paulb@152 | 9 | f(a=1.0, b=2.0) |